2012-12-24 12:29:59 -03:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(name='Pamac',
|
2013-04-17 09:41:10 -03:00
|
|
|
version='0.7',
|
2012-12-24 12:29:59 -03:00
|
|
|
description='A gtk3 frontend for pyalpm',
|
|
|
|
license='GPL',
|
|
|
|
author='Guillaume Benoit',
|
|
|
|
author_email='guillaume@manjaro.org',
|
2013-03-26 07:02:17 -03:00
|
|
|
url='http://git.manjaro.org/core/pamac',
|
2013-01-06 15:10:13 -03:00
|
|
|
packages=['pamac'],
|
2012-12-24 12:29:59 -03:00
|
|
|
)
|