summaryrefslogtreecommitdiff
path: root/setup.py
blob: 4c9b78b86ad41efdebd0773358adf1ad72e9f72c (plain)
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
34
35
36
37
38
39
from setuptools import setup

meta = {}
exec(open('./debianbts/version.py').read(), meta)
meta['long_description'] = open('./README.md').read()

setup(
    name='python-debianbts',
    version=meta['__version__'],
    description="Python interface to Debian's Bug Tracking System",
    long_description=meta['long_description'],
    long_description_content_type='text/markdown',
    keywords='debian, soap, bts',
    author='Bastian Venthur',
    author_email='venthur@debian.org',
    url='https://github.com/venthur/python-debianbts',
    project_urls={
        'Documentation': 'https://python-debianbts.readthedocs.io/',
        'Source': 'https://github.com/venthur/python-debianbts',
    },
    license='MIT',
    packages=['debianbts'],
    install_requires=[
        'pysimplesoap',
    ],
    python_requires='>=3.4, <4',
    entry_points={
        'console_scripts': [
            'debianbts = debianbts.__main__:main'
        ]
    },
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3",
        "Topic :: Software Development :: Bug Tracking",
    ],
)