-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
76 lines (70 loc) · 1.79 KB
/
setup.py
File metadata and controls
76 lines (70 loc) · 1.79 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# based on https://github.com/pypa/sampleproject
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="rhub",
version="0.0.1",
description="Resource Hub API/backend service",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/resource-hub-dev/rhub-api",
author="Red Hat, inc.",
author_email="resource-hub-dev@redhat.com",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
zip_safe=False,
python_requires=">=3.7, <4",
install_requires=[
"alembic",
"attrs",
"celery",
"click",
"coloredlogs",
"connexion[swagger-ui] ~= 2.14",
"cron-validator >= 1.0.5",
"dpath",
"dynaconf",
"flask",
"flask-apscheduler",
"flask-cors",
"flask-dotenv",
"flask_injector",
"flask-migrate",
"flask-sqlalchemy ~= 2.5",
"gunicorn",
"hvac",
"injector",
"inotify",
"jinja2",
"kombu",
"ldap3",
"oic",
"openapi_spec_validator",
"openstacksdk",
"prance[osv]",
"psycopg2-binary",
"python-dateutil",
"pyyaml",
"requests",
"SQLAlchemy ~= 1.4",
"tenacity",
"Werkzeug",
],
extras_require={
"dev": [
"build",
"check-manifest>=0.42",
"coverage",
"pip-tools",
"tox >= 4",
],
},
classifiers=[
'License :: OSI Approved :: MIT License',
],
)