| [project] |
| name = "splasher" |
| version = "0.1.0" |
| description = "Labeling tool: synchronized channels (3D clouds, images) -> 2D BEV grid or per-point labels" |
| readme = "README.md" |
| authors = [{ name = "Augustin Bresset", email = "augustin.bresset@gmail.com" }] |
| license = { file = "LICENSE" } |
| requires-python = ">=3.11" |
| keywords = ["labeling", "annotation", "lidar", "point-cloud", "bev", "robotics", "traversability"] |
| classifiers = [ |
| "Development Status :: 4 - Beta", |
| "Intended Audience :: Science/Research", |
| "License :: OSI Approved :: MIT License", |
| "Programming Language :: Python :: 3.11", |
| "Programming Language :: Python :: 3.12", |
| "Topic :: Scientific/Engineering :: Image Processing", |
| ] |
| |
| dependencies = [ |
| "numpy", |
| ] |
|
|
| |
| [project.optional-dependencies] |
| apairo = [ |
| |
| "apairo @ git+https://github.com/apairo-robotics/apairo.git@v0.5.0", |
| "PyYAML", |
| ] |
| |
| api = [ |
| "fastapi", |
| "uvicorn", |
| ] |
| |
| |
| |
| app = [ |
| "fastapi", |
| "uvicorn", |
| "pywebview[qt]", |
| ] |
|
|
| [project.scripts] |
| splasher = "splasher.cli:main" |
|
|
| [dependency-groups] |
| dev = ["pytest", "httpx", "ruff"] |
|
|
| [tool.ruff] |
| line-length = 110 |
| target-version = "py311" |
|
|
| [tool.ruff.lint] |
| select = ["E", "F", "W", "I", "B", "UP"] |
| ignore = ["B008"] |
|
|
| [build-system] |
| requires = ["hatchling"] |
| build-backend = "hatchling.build" |
|
|
| [tool.hatch.build.targets.wheel] |
| packages = ["splasher"] |
|
|
| [tool.hatch.metadata] |
| allow-direct-references = true |
|
|