-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.25 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "neonutilities"
version = "1.2.2"
authors = [
{name="Claire Lunch", email="clunch@battelleecology.org"},
{name="Bridget Hass", email="bhass@battelleecology.org"},
{name="Zachary Nickerson", email="nickerson@battelleecology.org"},
{name="Michelle Sunderman", email="sunderman@battelleecology.org"}
]
description="A package for accessing and wrangling data generated and published by the National Ecological Observatory Network."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"importlib-resources",
"pandas",
"parameterized",
"pyarrow",
"pyproj",
"requests",
"tqdm",
"h5py",
"google_crc32c"
]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://github.com/NEONScience/NEON-utilities-python"
Documentation = "https://neon-utilities-python.readthedocs.io/en/latest/"
Repository = "https://github.com/NEONScience/NEON-utilities-python"
Issues = "https://github.com/NEONScience/NEON-utilities-python/issues"
Changelog = "https://github.com/NEONScience/NEON-utilities-python/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.*"]