forked from app-sre/qontract-reconcile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
85 lines (83 loc) · 2.75 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
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
77
78
79
80
81
82
83
84
85
from setuptools import (
find_packages,
setup,
)
from release import version
setup(
name="qontract-reconcile",
version=version.pip(),
license="Apache License 2.0",
author="Red Hat App-SRE Team",
author_email="sd-app-sre@redhat.com",
python_requires=">=3.9",
description="Collection of tools to reconcile services with their desired "
"state as defined in the app-interface DB.",
url="https://github.com/app-sre/qontract-reconcile",
packages=find_packages(exclude=("tests",)),
package_data={"reconcile": ["templates/*.j2", "gql_queries/*/*.gql"]},
install_requires=[
"sretoolbox~=2.4.1",
"Click>=7.0,<9.0",
"gql==3.1.0",
"toml>=0.10.0,<0.11.0",
"jsonpath-rw>=1.4.0,<1.5.0",
"PyGithub>=1.58,<1.59",
"hvac>=0.7.0,<0.8.0",
"ldap3>=2.9.1,<2.10.0",
"anymarkup>=0.7.0,<0.9.0",
"python-gitlab>=1.11.0,<1.12.0",
"semver~=2.13",
"python-terraform>=0.10.0,<0.11.0",
"boto3==1.26.139",
"botocore==1.29.139",
"urllib3>=1.25.4,<1.27.0",
"slack_sdk>=3.10,<4.0",
"pypd>=1.1.0,<1.2.0",
"Jinja2>=2.10.1,<3.2.0",
"jira~=3.1",
"pyOpenSSL~=23.0",
"ruamel.yaml>=0.17.22,<0.18.0",
"terrascript==0.9.0",
"tabulate>=0.8.6,<0.9.0",
"UnleashClient~=5.3",
"prometheus-client~=0.8",
"sentry-sdk~=0.14",
"jenkins-job-builder~=4.0.0",
"parse==1.18.0",
"sendgrid>=6.4.8,<6.5.0",
"dnspython~=2.1",
"requests==2.22.0",
"kubernetes~=24.0",
"websocket-client<0.55.0,>=0.35",
"sshtunnel>=0.4.0",
"croniter>=1.0.15,<1.1.0",
"transity-statuspageio>=0.0.3,<0.1",
"pydantic~=1.10.6",
"MarkupSafe==2.1.1",
# this is really needed only in lint and type validations.
# Is there any better place to put this in?
"packaging~=21.3",
"deepdiff6==6.2.0",
"jsonpath-ng~=1.5",
"networkx~=2.8",
"mypy-boto3-s3~=1.24.94",
"rich>=13.3.0,<14.0.0",
"dateparser~=1.1.7",
],
test_suite="tests",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
],
entry_points={
"console_scripts": [
"qontract-reconcile = reconcile.cli:integration",
"app-interface-reporter = tools.app_interface_reporter:main",
"glitchtip-access-reporter = tools.glitchtip_access_reporter:main",
"glitchtip-access-revalidation = tools.glitchtip_access_revalidation:main",
"qontract-cli = tools.qontract_cli:root",
],
},
)