-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (66 loc) · 1.57 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
69
70
71
72
[project]
name = "nodecommerce-backend"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"core",
"lightgbm>=4.6.0",
"numpy>=2.4.6",
"pandas>=3.0.3",
"python-dotenv>=1.2.2",
"scikit-learn>=1.8.0",
"scipy>=1.17.1",
"structlog>=25.5.0",
]
[tool.uv.workspace]
members = [
"packages/core",
"packages/migrations",
"packages/feature_store",
"packages/recsys",
"packages/forecasting",
"packages/api",
"packages/knowledge_graph",
"packages/pipeline",
"packages/agents",
"packages/router",
"packages/aco",
"packages/monitoring",
]
[tool.uv.sources]
feature_store = { workspace = true }
recsys = { workspace = true }
migrations = { workspace = true }
forecasting = { workspace = true }
knowledge-graph = { workspace = true }
agents = { workspace = true }
router = { workspace = true }
aco = { workspace = true }
api = { workspace = true }
pipeline = { workspace = true }
monitoring = { workspace = true }
core = { workspace = true }
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"httpx>=0.27", # for TestClient
"ruff>=0.4",
"mypy>=1.10",
"pre-commit>=3.7",
"aiosqlite>=0.22.1",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"
testpaths = ["tests"]
markers = [
"integration: tests that require Docker containers and/or external APIs",
]