python-dpkg/setup.py

39 lines
1.3 KiB
Python
Raw Permalink Normal View History

2019-05-04 21:34:18 -07:00
from setuptools import setup
__VERSION__ = '1.3.2'
2017-06-09 10:55:54 -07:00
2017-01-24 12:00:07 -08:00
setup(
name='pydpkg',
packages=['pydpkg'], # this must be the same as the name above
2017-06-09 10:55:54 -07:00
version=__VERSION__,
description='A python library for parsing debian package control headers and comparing version strings',
author='Nathan J. Mehl',
author_email='n@climate.com',
url='https://github.com/theclimatecorporation/python-dpkg',
2017-06-09 10:55:54 -07:00
download_url='https://github.com/theclimatecorporation/python-dpkg/tarball/%s' % __VERSION__,
keywords=['apt', 'debian', 'dpkg', 'packaging'],
2019-05-04 21:34:18 -07:00
setup_requires=[
'arpy==1.1.1',
2019-05-04 21:34:18 -07:00
'six>=1.10.0',
2023-05-27 17:36:19 -07:00
'PGPy==0.6.0',
'pyzstd>=0.15.7'
],
extras_require={
'test': ['pep8==1.7.0', 'pytest==3.1.1', 'pylint==1.7.1']
},
scripts=[
'scripts/dpkg-inspect.py'
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
2019-05-04 21:34:18 -07:00
"Topic :: System :: Archiving :: Packaging"]
2017-01-24 12:00:07 -08:00
)