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 27 28 29 30 31 32 33
|
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='Decopy',
version='0.2.4.9',
author='Maximiliano Curia',
author_email='maxy@debian.org',
description='Automatic debian/copyright Generator',
long_description='''
Decopy automates writing and updating the debian/copyright file.
It reads all files in the source tree, analyzes the licenses and copyright
messages included and generates the corresponding debian/copyright file.
When the file already exists, decopy parses it to generate a more complete
output.
''',
url='https://salsa.debian.org/debian/decopy',
license='ISC',
requires=['debian', 'tqdm', 'xdg'],
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: ISC License (ISCL)',
],
packages=find_packages(exclude=['tests', 'tests.*']),
entry_points={
'console_scripts': ['decopy = decopy.decopy:main'],
},
test_suite='tests',
)
|