-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
39 lines (36 loc) · 1.05 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
[build-system]
requires = [
"setuptools>=64",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "geoapis"
version = "0.3.4"
description = "A package for downloading geospatial data from web APIs."
readme = "README.md"
authors = [{ name = "Rose pearson", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["APIs", "LiDAR", "point clouds", "vector", "Geospatial data"]
dependencies = [
"geopandas>=0.10",
"requests",
"boto3",
"python-dotenv",
"tqdm",
'tomli; python_version < "3.6"',
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = ["black", "python-dotenv", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/niwa/geoapis"
Documentation = "https://github.com/niwa/geoapis/wiki"