1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
from setuptools import setup
meta = {}
exec(open('./popcon/version.py').read(), meta)
meta['long_description'] = open('./README.md').read()
setup(
name='python-popcon',
version=meta['__version__'],
description="Python interface to Debian's popularity contest database",
long_description=meta['long_description'],
long_description_content_type='text/markdown',
keywords='debian, popcon, popularity contest',
author='Bastian Venthur',
author_email='venthur@debian.org',
url='https://github.com/venthur/python-popcon',
license='GPL2',
packages=['popcon'],
python_requires='>=3.7, <4',
entry_points={
'console_scripts': [
'popcon = popcon.__main__:main'
]
},
)
|