-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
45 lines (42 loc) · 1005 Bytes
/
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
[tool.poetry]
name = "ros-backend"
version = "2.4.0"
description = "Backend for Resource Optimization"
readme = "README.md"
authors = []
[tool.poetry.dependencies]
python = "^3.11"
Flask = "~=3.0.3"
gunicorn = "~=22.0.0"
flask-restful = "~=0.3.8"
Flask-SQLAlchemy = "~=3.0.3"
sqlalchemy = "~=2.0"
psycopg2 = "^2.9.9"
flask-migrate = "~=4.0.4"
flask-cors = "~=5.0.0"
confluent-kafka = "^2.0.2"
requests = "~=2.32.2"
insights-core = "~=3.4.0"
pydash = "~=6.0.0"
app-common-python = "~=0.2.5"
prometheus-client = "~=0.11.0"
prometheus-flask-exporter = "~=0.22.3"
pyyaml = "*"
watchtower = ">=1.0.0"
boto3 = ">=1.16.13"
botocore = ">=1.19.13"
flask-caching = "^2.0.2"
flask-unleash = "^2.0.0"
werkzeug = "<4.0.0"
logstash_formatter = "^0.5.17"
[tool.poetry.group.dev.dependencies]
flake8 = "*"
pytest = "~=7.2.0"
sqlalchemy-utils = "*"
pytest-mock = "*"
pytest-cov = "*"
pytest_mock_resources = "*"
python-on-whales = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"