-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
76 lines (69 loc) · 1.89 KB
/
pyproject.toml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "up42-py"
version = "2.2.0a19"
description = "Python SDK for UP42, the geospatial marketplace and developer platform."
authors = ["UP42 GmbH <[email protected]>"]
license = "https://github.com/up42/up42-py/blob/master/LICENSE"
readme = "README.md"
packages = [
{ include = "up42", from = "." },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
]
[tool.poetry.dependencies]
python = ">=3.9, <4"
requests = "^2.31.0"
tqdm = "^4.66.0"
geojson = "3.1.0"
geopandas = "^0"
pystac-client = "^0.7.2"
pyproj = "^3.6.1"
tenacity = "8.4.1"
[tool.poetry.dev-dependencies]
nbconvert = "^7.16.2"
black = "^24.3.0"
requests-mock = "^1.9.3"
pylint = "^3.0.3"
pytest = "^7.2.0"
pytest-pylint = "0.21.0"
pytest-sugar = "^0.9.4"
mypy = "^1.8.0"
python-dateutil = "^2.8.2"
types-python-dateutil = "^2.8.19.4"
types-requests = "^2.28.11.5"
types-mock = "^4.0.15.2"
types-click = "^7.1.8"
mypy-extensions = "^1.0.0"
pytest-cov = "^4.0.0"
pytest-mypy = "^0.10.2"
mock = "^4.0.3"
pre-commit = "^3.5.0"
types-tqdm = "^4.66.0.20240106"
pandas-stubs = "^2.0.1.230501"
pylint-google-style-guide-imports-enforcing = "^1.3.0"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.14"
mkdocstrings = ">=0.19.0"
mkdocstrings-python = ">=1.3.0"
mkdocs-exclude = ">=1.0.2"
mkdocs-jupyter = ">=0.24.6"
mkdocs-autolinks-plugin = ">=0.6.0"
mkdocs-macros-plugin = ">=1.0.0"
mkdocs-redirects = ">=1.2.1"
[tool.pytest.ini_options]
pythonpath = "."
addopts = "--cov --cov-report=html --cov-report=xml --junitxml=out/test_results/junit.xml"
[tool.poetry.group.viz.dependencies]
rasterio = "^1.3.8"
folium = "^0.14.0"
branca = "^0.6.0"
matplotlib = "^3.7.2"
descartes = "^1.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"