obj_localizer / pyproject.toml
3v324v23's picture
feat: initialize SpaceDebris Localizer project
23db765
Raw
History Blame Contribute Delete
944 Bytes
[project]
name = "space-debris-localizer"
version = "1.0.0"
description = "Locate space debris, satellite fragments, and spacecraft components in orbital imagery using NVIDIA LocateAnything-3B"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"transformers>=4.57.0",
"torch>=2.0.0",
"torchvision",
"Pillow>=11.0.0",
"numpy>=1.25.0",
"opencv-python-headless>=4.11.0",
"gradio>=5.0.0",
"peft",
"decord>=0.6.0",
"lmdb>=1.7.5",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.4.0",
"black>=24.0.0",
"pytest>=8.0.0",
]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]