samgis / pyproject.toml
aletrn's picture
[refactor] use poetry also to build the aws docker images
c76cb5f
raw
history blame
1.18 kB
[tool.poetry]
name = "samgis"
version = "1.0.0"
description = "A backend for machine learning instance segmentation on geospatial data even without dedicated graphics cards."
authors = ["alessandro trinca tornidor <alessandro@trinca.tornidor.com>"]
license = "MIT license"
readme = "README.md"
[tool.poetry.dependencies]
bson = "^0.5.10"
contextily = "^1.4.0"
geopandas = "^0.14.1"
numpy = "^1.26.2"
onnxruntime = "^1.16.3"
opencv-python-headless = "^4.8.1.78"
python = "^3.11"
python-dotenv = "^1.0.0"
rasterio = "^1.3.9"
requests = "^2.31.0"
pillow = "^10.1.0"
[tool.poetry.group.aws_lambda]
optional = true
[tool.poetry.group.aws_lambda.dependencies]
aws-lambda-powertools = "^2.30.2"
awslambdaric = "^2.0.8"
jmespath = "^1.0.1"
pydantic = ">=2.0.3"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
python-dotenv = "^1.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-autodoc-typehints = "^1.25.2"
sphinxcontrib-openapi = "^0.8.3"
myst-parser = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"