30 lines
557 B
TOML
30 lines
557 B
TOML
[project]
|
|
name = "scrgr"
|
|
version = "0.1.0"
|
|
description = "Spinda Coordinate Regression & Global Registry"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"torch>=2.0.0",
|
|
"torchvision>=0.15.0",
|
|
"opencv-python>=4.7.0",
|
|
"Pillow>=9.5.0",
|
|
"numpy>=1.24.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.3.0",
|
|
"ruff>=0.0.270",
|
|
"mypy>=1.3.0",
|
|
"tqdm>=4.65.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
select = ["E", "F", "I", "N", "UP", "B", "A", "C4"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
strict = true
|
|
ignore_missing_imports = true
|