File size: 1,166 Bytes
c76cb5f c8c2cad 9a9ef93 c8c2cad c76cb5f c8c2cad 679003c c76cb5f 42d43f3 9a9ef93 e0abcc6 6abf74d 42d43f3 c76cb5f 679003c 674e242 9a9ef93 f0201ee b3c7ca2 c76cb5f eece69a 0412d8e c76cb5f eece69a 0412d8e eece69a 42d43f3 c76cb5f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
[tool.poetry]
name = "samgis"
version = "1.11.0"
description = "A backend for machine learning instance segmentation on geospatial data even without dedicated graphics cards."
authors = ["alessandro trinca tornidor <[email protected]>"]
license = "MIT license"
readme = "README.md"
package-mode = false
[metadata]
name = "samgis"
version = "1.11.0"
[tool.poetry.urls]
Source = "https://github.com/trincadev/samgis-be"
Demo = "https://huggingface.co/spaces/aletrn/samgis"
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
onnxruntime = "^1.20.1"
samgis-web = "1.2.3"
[tool.poetry.group.gradio]
optional = true
[tool.poetry.group.gradio.dependencies]
gradio = "^5.11.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
httpx = "^0.27.2"
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
python-dotenv = "^1.0.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^8.1.3"
sphinx-autodoc-typehints = "^2.5.0"
sphinxcontrib-openapi = "^0.8.4"
myst-parser = "^4.0.0"
sphinx-autodoc-defaultargs = "^0.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|