-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
44 lines (40 loc) · 1.5 KB
/
setup.py
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
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = ''.join(f.readlines())
NAME = 'kojistatus'
setup(
name=NAME,
version='0.3',
description='Fetches the last statuses of Fedora Koji builds',
long_description=long_description,
author='Miro Hrončok',
author_email='[email protected]',
keywords='koji fedora status',
license='MIT',
url='https://github.com/fedora-python/' + NAME,
install_requires=['requests', 'Flask'],
setup_requires=['pytest-runner'],
extras_require={
# flake8 5.0+ is not compatible with pytest-flake8
# see https://github.com/tholo/pytest-flake8/issues/87
"tests": ['pytest>=3', 'betamax', 'pytest-flake8', 'flake8<5']
},
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)