-
Notifications
You must be signed in to change notification settings - Fork 85
/
setup.py
93 lines (92 loc) · 3.1 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
86
87
88
89
90
91
92
93
from release import version
from setuptools import (
find_packages,
setup,
)
setup(
name="qontract-reconcile",
version=version.pip(),
license="Apache License 2.0",
author="Red Hat App-SRE Team",
author_email="[email protected]",
python_requires=">=3.11",
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.5",
"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~=4.6",
"semver~=3.0",
# keep in sync with boto3-stubs in requirements-type.txt
"boto3==1.34.94",
"botocore==1.34.94",
"urllib3~=2.2",
"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.11",
"prometheus-client~=0.8",
"sentry-sdk~=2.0",
"jenkins-job-builder~=4.3.0",
"parse==1.18.0",
"sendgrid>=6.4.8,<6.5.0",
"dnspython~=2.1",
"requests~=2.32",
"kubernetes~=24.0",
"websocket-client<0.55.0,>=0.35",
"sshtunnel>=0.4.0",
"croniter>=1.0.15,<1.1.0",
"pydantic~=1.10.6",
"MarkupSafe==2.1.1",
"filetype~=1.2.0",
"psycopg2~=2.9",
# this is really needed only in lint and type validations.
# Is there any better place to put this in?
"packaging~=23.1",
"deepdiff==6.7.1",
"jsonpath-ng==1.5.3",
"networkx~=2.8",
"rich>=13.3.0,<14.0.0",
"dateparser~=1.1.7",
"pyjwt~=2.7",
"requests-oauthlib~=1.3",
"dt==1.1.61",
"jsonpatch~=1.33",
"jsonpointer~=2.4",
"yamllint==1.34.0",
],
test_suite="tests",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
],
entry_points={
"console_scripts": [
"qontract-reconcile = reconcile.cli:integration",
"app-interface-reporter = tools.app_interface_reporter:main",
"app-interface-metrics-exporter = tools.app_interface_metrics_exporter:main",
"saas-metrics-exporter = tools.saas_metrics_exporter.main:main",
"glitchtip-access-reporter = tools.glitchtip_access_reporter:main",
"glitchtip-access-revalidation = tools.glitchtip_access_revalidation:main",
"template-validation = tools.template_validation:main",
"qontract-cli = tools.qontract_cli:root",
],
},
)