-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.05 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "burnlens-cloud"
version = "1.2.1"
description = "BurnLens Cloud Backend — Cost aggregation and billing service"
authors = [{name = "Bhushan", email = "bhushan@burnlens.app"}]
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"asyncpg>=0.29.0",
"sqlalchemy[asyncio]>=2.0.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"PyJWT[crypto]>=2.13.0",
"bcrypt>=4.1.3",
"httpx>=0.25.0",
"sendgrid>=6.10.0",
# "google-auth-oauthlib>=1.0.0", # SSO disabled for now
"requests>=2.31.0",
"python-dateutil>=2.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.25.0",
]
[tool.setuptools.packages.find]
include = ["burnlens_cloud*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["E402", "E741", "F811"]