Skip to content

Commit 124e2bc

Browse files
committed
Merge branch 'ZN_PyOpenSci_review'
2 parents bd1e6da + a52ef35 commit 124e2bc

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

CITATION.cff

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
cff-version: 1.2.0
2+
message: "If you use this software, please cite it as below."
3+
authors:
4+
- family-names: "Lunch"
5+
given-names: "Claire"
6+
orcid: https://orcid.org/0000-0001-8753-6593
7+
- family-names: "Hass"
8+
given-names: "Bridget"
9+
orcid: https://orcid.org/0000-0002-1538-9085
10+
- family-names: "Nickerson"
11+
given-names: "Zachary"
12+
orcid: https://orcid.org/0000-0001-6666-6276
13+
title: "Utilities for discovering, downloading, and working with data files published by the National Ecological Observatory Network (NEON)"
14+
version: 1.0.1
15+
date-released: 2024-12-04
16+
url: "https://github.com/NEONScience/NEON-utilities-python"

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
neonutilities
22
===============
33

4+
[![Python Package](https://img.shields.io/github/actions/workflow/status/NEONScience/NEON-utilities-python/python-package.yml)](https://github.com/NEONScience/NEON-utilities-python/actions/workflows/python-package.yml)
5+
[![Documentation Status](https://readthedocs.org/projects/neon-utilities-python/badge/?version=latest)](https://neon-utilities-python.readthedocs.io/en/latest/?badge=latest)
6+
[![PyPI version shields.io](https://img.shields.io/pypi/v/neonutilities.svg)](https://pypi.org/project/neonutilities/)
7+
[![PyPI license](https://img.shields.io/github/license/NEONScience/NEON-utilities-python)](https://github.com/NEONScience/NEON-utilities-python/blob/main/LICENSE)
8+
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://img.shields.io/badge/repo%20status-Active-Green)](https://www.repostatus.org/#active)
9+
410
[https://github.com/NEONScience/NEON-utilities-python](https://github.com/NEONScience/NEON-utilities-python)
511

612
The neonutilities Python package provides utilities for discovering, downloading, and working with data files published by the National Ecological Observatory Network (NEON). NEON data files can be downloaded from the NEON Data Portal (http://data.neonscience.org) or API (http://data.neonscience.org/data-api). NEON data files from Instrumented and Observation Systems (IS and OS) are delivered by NEON in tabular files organized by site and year-month. NEON data files from the Airborne Observation Platform (AOP) are organized by site and year.

pyproject.toml

+8-4
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ authors = [
1313
description="A package for accessing and wrangling data generated and published by the National Ecological Observatory Network."
1414
readme = "README.md"
1515
requires-python = ">=3.9"
16-
urls.Documentation = "https://neon-utilities-python.readthedocs.io/en/latest/"
17-
urls.Source = "https://github.com/NEONScience/NEON-utilities-python/"
1816
dependencies = [
1917
"importlib-resources",
2018
"pandas",
@@ -24,9 +22,15 @@ dependencies = [
2422
"requests",
2523
"tqdm"
2624
]
25+
license = "GNU"
26+
license-file = "LICENSE"
2727

28-
[project.license]
29-
file = "LICENSE"
28+
[project.urls]
29+
Homepage = "https://github.com/NEONScience/NEON-utilities-python"
30+
Documentation = "https://neon-utilities-python.readthedocs.io/en/latest/"
31+
Repository = "https://github.com/NEONScience/NEON-utilities-python"
32+
Issues = "https://github.com/NEONScience/NEON-utilities-python/issues"
33+
Changelog = "https://github.com/NEONScience/NEON-utilities-python/blob/main/CHANGELOG.md"
3034

3135
[tool.setuptools.packages.find]
3236
where = ["src"]

0 commit comments

Comments
 (0)