-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
35 lines (31 loc) · 941 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "neonutilities"
version = "1.0.2"
authors = [
{name="Claire Lunch", email="[email protected]"},
{name="Bridget Hass", email="[email protected]"},
{name="Zachary Nickerson", email="[email protected]"}
]
description="A package for accessing and wrangling data generated and published by the National Ecological Observatory Network."
readme = "README.md"
requires-python = ">=3.9"
urls.Documentation = "https://neon-utilities-python.readthedocs.io/en/latest/"
urls.Source = "https://github.com/NEONScience/NEON-utilities-python/"
dependencies = [
"importlib-resources",
"pandas",
"parameterized",
"pyarrow",
"pyproj",
"requests",
"tqdm"
]
[project.license]
file = "LICENSE"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.*"]