-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
38 lines (36 loc) · 1.28 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
from setuptools import setup
setup(name='dashdotdb',
packages=['dashdotdb'],
version=open('VERSION').read().strip(),
author='Red Hat Application SRE Team',
author_email="[email protected]",
description='',
python_requires='>=3.9',
license="GPLv2+",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: '
'GNU General Public License v2 or later (GPLv2+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.9',
],
install_requires=[
'connexion[swagger-ui] ~= 2.14',
'Flask ~= 1.1',
'flask-healthz ~= 0.0.3',
'Flask-Migrate ~= 2.7',
'Flask-SQLAlchemy ~= 2.5',
'SQLAlchemy ~= 1.4.48',
'psycopg2-binary ~= 2.9',
'prometheus-client ~= 0.14',
'gunicorn ~=23.0',
'openapi-schema-validator ~=0.6.2',
'jsonschema ~=4.23',
# Newer versions are not compatible with our Flask version
'markupsafe == 2.0.1'
],
)