-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (65 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
68 lines (65 loc) · 1.83 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
[project]
name = "url-shortener-scalable"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.12.15",
"aiosqlite>=0.21.0",
"asyncpg>=0.30.0",
"celery>=5.5.3",
"click>=8.2.1",
"email-validator>=2.3.0",
"fakeredis>=2.31.1",
"fastapi[standard]>=0.116.1",
"flower>=2.0.1",
"jinja2>=3.1.6",
"mongomock>=4.3.0",
"motor>=3.7.1",
"psycopg2-binary>=2.9.10",
"pulumi>=3.196.0",
"pulumi-aws>=7.7.0",
"pulumi-command>=1.1.0",
"pydantic-settings>=2.10.1",
"pymongo>=4.15.0",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"python-dotenv>=1.1.1",
"pyyaml>=6.0.2",
"redis>=6.4.0",
"sqlalchemy[asyncio]>=2.0.43",
"pytz<2022",
"opentelemetry-api>=1.21.0",
"opentelemetry-sdk>=1.21.0",
"opentelemetry-distro>=0.42b0",
"opentelemetry-instrumentation-fastapi>=0.42b0",
"opentelemetry-instrumentation-sqlalchemy>=0.42b0",
"opentelemetry-instrumentation-redis>=0.42b0",
"opentelemetry-exporter-otlp>=1.21.0",
"opentelemetry-instrumentation-requests>=0.59b0",
"opentelemetry-instrumentation-logging>=0.59b0",
"opentelemetry-instrumentation>=0.59b0",
"opentelemetry-propagator-b3>=1.38.0",
"opentelemetry-exporter-otlp-proto-grpc>=1.38.0",
"opentelemetry-instrumentation-pika>=0.59b0",
"opentelemetry-instrumentation-pymongo>=0.59b0",
"opentelemetry-instrumentation-celery>=0.59b0",
]
[project.optional-dependencies]
test = [
"pytest>=8.3.2",
"pytest-asyncio>=0.23.8",
"httpx>=0.27.0",
"aiosqlite>=0.20.0",
"fakeredis>=2.23.0",
"mongomock>=4.1.2",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["services_python*", "services_python.common*"]
exclude = ["tests*"]
[dependency-groups]
dev = [
"pytest-cov>=7.0.0",
]