-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.22 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
[project]
name = "metaboflow"
version = "0.1.0"
description = "Metabolomics engine aggregation platform"
requires-python = ">=3.11"
license = "MIT"
dependencies = [
"numpy>=1.26",
"pandas>=2.1",
"h5py>=3.10",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.0",
"ruff>=0.5",
"mypy>=1.10",
"pandas-stubs>=2.1",
]
e2e = [
"fastapi>=0.115",
"httpx>=0.27",
"uvicorn>=0.32",
"sqlalchemy>=2.0",
"pydantic-settings>=2.6",
"python-multipart>=0.0.12",
"sse-starlette>=2.1",
"celery[redis]>=5.4",
"redis>=5.0",
"alembic>=1.14",
"jinja2>=3.1",
"matplotlib>=3.8",
"seaborn>=0.13",
"scikit-learn>=1.4",
"scipy>=1.13",
]
[tool.ruff]
target-version = "py311"
line-length = 120
src = ["packages"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
testpaths = ["packages/common/metabodata/tests", "tests"]
pythonpath = ["packages/common", "packages/backend", "packages/chart-service"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
[tool.hatch.build.targets.wheel]
packages = ["packages/common/metabodata"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"