-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (53 loc) · 1.66 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["python*"]
[tool.setuptools.package-data]
"python.services.providers" = ["open_comp_prov_v0.0.0alpha.py"]
"python.config" = ["providers.json", "pricing.json"]
[project]
name = "repl-nix-workspace"
version = "0.1.0"
description = "Add your description here"
license = { text = "AGPL-3.0-or-later" }
requires-python = ">=3.12"
dependencies = [
"aimmh-lib>=1.1.0",
"aiofiles>=25.1.0",
"alembic>=1.18.4",
"anthropic>=0.97.0",
"asyncpg>=0.31.0",
"cryptography>=47.0.0",
"edcm @ git+https://github.com/The-Interdependency/edcm.git@8b0f82d7017a954ef45f9a3486aed8f04333551a",
"fastapi>=0.135.1",
"google-genai>=1.73.1",
"httpx>=0.28.1",
"interdependent-lib[ptcna] @ git+https://github.com/The-Interdependency/interdependent-lib.git@918025e525910eaa3f20141aeb3956f137b248bf",
"itsdangerous>=2.2.0",
"mako>=1.3.11",
"numpy>=2.4.3",
"openai>=2.0.0",
"openai-agents>=0.15.0",
"pcea @ git+https://github.com/The-Interdependency/PCEA.git@2896194d2de52ce8666ea288ec9e820d0498d119",
"psycopg2-binary>=2.9.11",
"pydantic>=2.12.5",
"pyjwt[crypto]>=2.10.1",
"pypdf>=6.10.2",
"python-multipart>=0.0.23",
"replit-object-storage>=1.0.2",
"sqlalchemy>=2.0.48",
"stripe>=15.0.1",
"uvicorn[standard]>=0.42.0",
"xai-sdk>=1.12.1",
]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
asyncio_default_test_loop_scope = "session"
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
]