First commit

This commit is contained in:
alexiondev
2026-05-08 09:22:50 -04:00
commit f5696d41c1
10 changed files with 295 additions and 0 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[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