forked from keephq/keep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
103 lines (97 loc) · 2.53 KB
/
pyproject.toml
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
94
95
96
97
98
99
100
101
102
103
[tool.poetry]
name = "keep"
version = "0.2.9"
description = "Alerting. for developers, by developers."
authors = ["Keep Alerting LTD"]
readme = "README.md"
packages = [{include = "keep"}]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
click = "^8.1.3"
pyyaml = "^6.0"
requests = "^2.28.2"
paramiko = "^3.4.0"
elasticsearch = "^8.6.1"
chevron = "^0.14.0"
python-dotenv = "^0.21.1"
pygithub = "^1.57"
sentry-sdk = "^1.15.0"
pydantic = "^1.10.4"
datefinder = "^0.7.3"
mysql-connector-python = "^8.0.32"
logmine = "^0.4.1"
astunparse = "^1.6.3"
python-json-logger = "^2.0.6"
boto3 = "^1.26.72"
validators = "^0.20.0"
python-telegram-bot = "^20.1"
fastapi = "^0.109.1"
uvicorn = "^0.20.0"
opsgenie-sdk = "^2.1.5"
psycopg2-binary = "^2.9.5"
starlette-context = "^0.3.6"
nest-asyncio = "^1.5.6"
datadog-api-client = "^2.12.0"
sqlmodel = "^0.0.8"
grafana-api-sdk = "^0.1.0"
cloud-sql-python-connector = "^1.2.3"
pymysql = "^1.0.3"
google-cloud-secret-manager = "^2.16.1"
python-jose = "^3.3.0"
jwcrypto = "^1.5.1"
sqlalchemy = "1.4.41"
snowflake-connector-python = "3.1.0"
openai = "^0.27.7"
opentelemetry-sdk = ">=1.20.0,<1.22"
opentelemetry-instrumentation-fastapi = "^0.41b0"
opentelemetry-instrumentation-logging = "^0.41b0"
opentelemetry-propagator-gcp = "^1.5.0"
pyngrok = "^7.0.2"
google-cloud-bigquery = "^3.11.0"
websocket-client = "^1.6.0"
posthog = "^3.0.1"
google-cloud-storage = "^2.10.0"
auth0-python = "^4.4.1"
asyncio = "^3.4.3"
python-multipart = "^0.0.7"
kubernetes = "^27.2.0"
opentelemetry-exporter-otlp-proto-grpc = "^1.20.0"
opentelemetry-instrumentation-sqlalchemy = "^0.41b0"
opentelemetry-instrumentation-requests = "^0.41b0"
asteval = "^0.9.31"
google-cloud-container = "^2.32.0"
pympler = "^1.0.1"
prettytable = "^3.9.0"
kafka-python = "^2.0.2"
opentelemetry-exporter-otlp-proto-http = "^1.20.0"
twilio = "^8.10.0"
azure-identity = "^1.15.0"
azure-mgmt-containerservice = "^27.0.0"
opentelemetry-exporter-gcp-trace = "^1.6.0"
pusher = "^3.3.2"
sendgrid = "^6.10.0"
gunicorn = "^21.2.0"
cel-python = "^0.1.5"
pymongo = "^4.6.1"
google-cloud-trace = "1.11.3"
hvac = "^2.1.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0.4"
pre-commit-hooks = "^4.4.0"
yamllint = "^1.29.0"
black = "^23.1.0"
isort = "^5.12.0"
autopep8 = "^2.0.1"
flake8 = "^6.0.0"
pytest = "^7.3.1"
coverage = "^7.2.2"
pytest-mock = "^3.11.1"
ruff = "^0.1.6"
pytest-docker = "^2.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
keep = "keep.cli.cli:cli"
[tool.ruff.lint]
ignore = ["F405", "F811", "E712", "E711", "F403"]