samgis / pyproject.toml
aletrn's picture
[refactor] renamed backend package to samgis
c8c2cad
raw
history blame
954 Bytes
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "samgis"
version = "1.0.0"
authors = [
{ name="Alessandro Trinca Tornidor", email="[email protected]" },
]
description = "A backend for machine learning instance segmentation on geospatial data even without dedicated graphics cards."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "optional-dependencies"]
[project.urls]
Homepage = "https://github.com/trincadev/samgis-be"
Issues = "https://github.com/trincadev/samgis-be/issues"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements_dockerfile.txt"]
[tool.hatch.metadata.hooks.requirements_txt.optional-dependencies]
dev = ["requirements_dev.txt"]
docs = ["requirements.txt"]