summaryrefslogtreecommitdiff
path: root/setup.py
blob: c5f402f0adb9607d9629a621f91eb529ffb4414d (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
40
41
42
43
44
45
#!/usr/bin/python3

import setuptools

with open('ickapi/version.py', 'r') as f:
    exec(f.read())

with open('README', 'r') as f:
    long_description = f.read()

setuptools.setup(
    name='ickapi',
    version=__version__,
    description='Ick API, a RESTful HTTP API/facade for Ick CI frontends',
    long_description=long_description,
    long_description_content_type='text/markdown',
    url='http://git.liw.fi/ickapi/',
    author='Ivan Dolgov',
    author_email='ivan@dolgov.fi',
    license='GPLv3+',
    packages=setuptools.find_packages(exclude=['tests']),
    python_requires='>=3.6',
    install_requires=[
        'aiohttp',
        'gunicorn',
    ],
    extras_require={
        'tests': [
            'pycodestyle',
            'pydocstyle',
            'pylint',
            'pytest',
            'pytest-aiohttp',
        ]
    },
    classifiers=[
        'Development Status :: 3 - Alpha',
        'License :: OSI Approved :: ' +
        'GNU General Public License v3 or later (GPLv3+)',
        'Environment :: Web Environment',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.6',
        'Operating System :: POSIX :: Linux',
    ],
)