forked from cromer/pamac-classic
14 lines
320 B
Python
14 lines
320 B
Python
#!/usr/bin/python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='Pamac',
|
|
version='0.9',
|
|
description='A gtk3 frontend for pyalpm',
|
|
license='GPL',
|
|
author='Guillaume Benoit',
|
|
author_email='guillaume@manjaro.org',
|
|
url='http://git.manjaro.org/core/pamac',
|
|
packages=['pamac'],
|
|
)
|