-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
41 lines (38 loc) · 1.14 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
[tool.poetry]
name = "pdgstaging"
version = "0.9.2"
description = "Geospatial data tiling workflow"
authors = [
"Robyn Thiessen-Bock <thiessenbock@nceas.ucsb.edu>",
"Juliet Cohen <jcohen@nceas.ucsb.edu>",
"Lauren Walker <walker@nceas.ucsb.edu>",
"Matthew B. Jones <jones@nceas.ucsb.edu>",
]
license = 'Apache Software License 2.0'
readme = "README.md"
repository = 'https://github.com/PermafrostDiscoveryGateway/viz-staging'
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, < 4.0"
numpy = ">= 1.2, < 2.0"
pandas = ">= 1.4, < 2.0"
shapely = ">= 2, < 3.0"
geopandas = ">= 0.12.2, < 1.0"
morecantile = ">= 3.1, < 4.0"
Rtree = ">= 0.9, < 1.0"
filelock = ">= 3.6, < 4.0"
coloraide = ">= 0.10, < 1"
colormaps = "== 0.4.0"
pydantic = "1.10.9"
[tool.poetry.group.dev.dependencies]
pytest = ">=7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"