|
3 | 3 | # Setup script for the `deb-pkg-tools' package.
|
4 | 4 | #
|
5 | 5 | # Author: Peter Odding <[email protected]>
|
6 |
| -# Last Change: September 12, 2019 |
| 6 | +# Last Change: September 27, 2019 |
7 | 7 | # URL: https://github.com/xolox/python-deb-pkg-tools
|
8 | 8 |
|
9 | 9 | """
|
@@ -61,45 +61,6 @@ def get_absolute_path(*args):
|
61 | 61 |
|
62 | 62 | setup(name='deb-pkg-tools',
|
63 | 63 | version=get_version('deb_pkg_tools', '__init__.py'),
|
64 |
| - description="Debian packaging tools", |
65 |
| - long_description=get_contents('README.rst'), |
66 |
| - url='https://deb-pkg-tools.readthedocs.io', |
67 |
| - author="Peter Odding", |
68 |
| - |
69 |
| - packages=find_packages(), |
70 |
| - test_suite='deb_pkg_tools.tests', |
71 | 64 | install_requires=get_requirements('requirements.txt'),
|
72 |
| - extras_require={ |
73 |
| - 'memcached': ['python-memcached >= 1.58'], |
74 |
| - }, |
75 |
| - entry_points=dict(console_scripts=[ |
76 |
| - 'deb-pkg-tools = deb_pkg_tools.cli:main', |
77 |
| - ]), |
78 |
| - classifiers=[ |
79 |
| - 'Development Status :: 5 - Production/Stable', |
80 |
| - 'Environment :: Console', |
81 |
| - 'Intended Audience :: Developers', |
82 |
| - 'Intended Audience :: Information Technology', |
83 |
| - 'Intended Audience :: System Administrators', |
84 |
| - 'License :: OSI Approved :: MIT License', |
85 |
| - 'Operating System :: POSIX :: Linux', |
86 |
| - 'Programming Language :: Python', |
87 |
| - 'Programming Language :: Python :: 2', |
88 |
| - 'Programming Language :: Python :: 2.7', |
89 |
| - 'Programming Language :: Python :: 3', |
90 |
| - 'Programming Language :: Python :: 3.4', |
91 |
| - 'Programming Language :: Python :: 3.5', |
92 |
| - 'Programming Language :: Python :: 3.6', |
93 |
| - 'Programming Language :: Python :: 3.7', |
94 |
| - 'Programming Language :: Python :: Implementation :: CPython', |
95 |
| - 'Programming Language :: Python :: Implementation :: PyPy', |
96 |
| - 'Topic :: Software Development', |
97 |
| - 'Topic :: Software Development :: Build Tools', |
98 |
| - 'Topic :: Software Development :: Libraries :: Python Modules', |
99 |
| - 'Topic :: System :: Archiving :: Packaging', |
100 |
| - 'Topic :: System :: Installation/Setup', |
101 |
| - 'Topic :: System :: Software Distribution', |
102 |
| - 'Topic :: System :: Systems Administration', |
103 |
| - 'Topic :: Terminals', |
104 |
| - 'Topic :: Utilities', |
105 |
| - ]) |
| 65 | + use_scm_version=True |
| 66 | +) |
0 commit comments