-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sentinel"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.26",
"pandas>=2.1",
"scikit-learn>=1.4",
"torch>=2.2",
"pydantic>=2.5",
"pydantic-settings>=2.1",
"python-dotenv>=1.0",
"structlog>=24.1",
"mlflow>=2.10",
"torchaudio>=2.2",
"transformers>=4.40",
"soundfile>=0.12",
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"python-multipart>=0.0.9",
"shap>=0.44",
"matplotlib>=3.8",
"evidently>=0.4",
"psycopg2-binary>=2.9",
"redis>=5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.1",
"ruff>=0.3",
"mypy>=1.8",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["sentinel*"]
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.mypy]
python_version = "3.12"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]