-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (62 loc) · 1.33 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "NPS-ActiveSpace"
version = "2.0"
description = "An NPS Sound Active Space Project."
requires-python = ">=3.7"
authors = [
{name="Kirby Heck"},
{name="Adina Zucker"},
{name="Davyd Betchkal"}
]
maintainers = [
{name="Davyd Betchkal", email="[email protected]"}
]
[project.urls]
repository = "https://github.com/dbetchkal/NPS-ActiveSpace"
[tool.setuptools]
py-modules = ['nps_active_space']
[project.optional-dependencies]
active-space = [
"Fiona==1.8.21",
"GDAL==3.4.2",
"geopandas==0.10.2",
"matplotlib==3.5.2",
"numpy==1.21.6",
"pandas==1.1.5",
"pygeos==0.13",
"pyproj==3.2.1",
"rasterio==1.2.10",
"scipy==1.7.3",
"Shapely==1.8.2",
"tqdm==4.64.0"
]
ground-truthing = [
"contextily==1.2.0",
"Fiona==1.8.21",
"GDAL==3.4.2",
"geopandas==0.10.2",
"matplotlib==3.5.2",
"numpy==1.21.6",
"pandas==1.1.5",
"Pillow==9.1.1",
"pyproj==3.2.1",
"rasterio==1.2.10",
"scipy==1.7.3",
"Shapely==1.8.2",
"tqdm==4.64.0"
]
utils = [
"Fiona==1.8.21",
"GDAL==3.4.2",
"geopandas==0.10.2",
"numpy==1.21.6",
"pandas==1.1.5",
"pyproj==3.2.1",
"rasterio==1.2.10",
"scipy==1.7.3",
"Shapely==1.8.2",
"tqdm==4.64.0"
]