-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 915 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 915 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "forgerunner"
version = "0.1.0"
description = "Unified Training Data Quality Dashboard"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"sqlalchemy[asyncio]>=2.0.0",
"aiosqlite>=0.20.0",
"alembic>=1.13.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"python-multipart>=0.0.9",
"aiofiles>=24.0.0",
"cleanlab>=2.6.0",
"sentence-transformers>=3.0.0",
"bertopic>=0.16.0",
"scikit-learn>=1.4.0",
"numpy>=1.26.0",
"pandas>=2.2.0",
"torch>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"httpx>=0.27.0",
"ruff>=0.5.0",
]
[tool.setuptools.packages.find]
include = ["backend*"]
[tool.ruff]
target-version = "py310"
line-length = 120