-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (39 loc) · 1.22 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
[tool.poetry]
name = "pdgraster"
version = "0.9.3"
description = "Geospatial data rasterization workflow"
authors = [
"Robyn Thiessen-Bock <[email protected]>",
"Juliet Cohen <[email protected]>",
"Lauren Walker <[email protected]>",
"Matthew B. Jones <[email protected]>",
]
license = 'Apache Software License 2.0'
readme = "README.md"
repository = 'https://github.com/PermafrostDiscoveryGateway/viz-raster'
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
]
[tool.poetry.dependencies]
python = ">=3.9"
numpy = ">=1.2"
shapely = ">= 2, < 3.0"
geopandas = ">= 0.12.2, < 1.0"
morecantile = ">= 3.1, < 4.0"
Rtree = ">= 0.9, < 1.0"
coloraide = ">= 0.10, < 1"
colormaps = "== 0.4.0"
Pillow = ">= 9"
rasterio = ">= 1.2, < 2"
pdgstaging = { git = "https://github.com/PermafrostDiscoveryGateway/viz-staging.git", branch = "develop" }
pydantic = "1.10.9"
[tool.poetry.group.dev.dependencies]
pytest = ">=7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"