-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from pysat/sty/pyproject
MAINT: pyproject.toml, docs
- Loading branch information
Showing
14 changed files
with
154 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
[build-system] | ||
requires = ["setuptools", "pip >= 10"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pysatNASA" | ||
version = "0.0.5" | ||
description = "pysat support for NASA Instruments" | ||
readme = "README.md" | ||
requires-python = ">=3.6" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "Jeff Klenzing, et al.", email = "[email protected]"}, | ||
] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Topic :: Scientific/Engineering :: Astronomy", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Topic :: Scientific/Engineering :: Atmospheric Science", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows" | ||
] | ||
keywords = [ | ||
"pysat", | ||
"ionosphere", | ||
"magnetosphere", | ||
"solar wind", | ||
"thermosphere" | ||
] | ||
dependencies = [ | ||
"beautifulsoup4", | ||
"cdasws", | ||
"cdflib >= 0.4.4", | ||
"lxml", | ||
"netCDF4", | ||
"numpy", | ||
"pandas", | ||
"pysat >= 3.0.4", | ||
"requests", | ||
"xarray" | ||
] | ||
|
||
[project.optional-dependencies] | ||
pysatcdf = ["pysatCDF"] | ||
test = [ | ||
"coveralls < 3.3", | ||
"flake8", | ||
"flake8-docstrings", | ||
"hacking >= 1.0", | ||
"pytest", | ||
"pytest-cov", | ||
"pytest-ordering" | ||
] | ||
doc = [ | ||
"extras_require", | ||
"ipython", | ||
"m2r2", | ||
"numpydoc", | ||
"sphinx", | ||
"sphinx_rtd_theme" | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://pysatnasa.readthedocs.io/en/latest/" | ||
Source = "https://github.com/pysat/pysatNASA" | ||
|
||
[tool.coverage.report] | ||
omit = ["*/instruments/templates/"] | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "-vs --cov=pysatNASA" | ||
markers = [ | ||
"all_inst", | ||
"download", | ||
"no_download", | ||
"load_options", | ||
"first", | ||
"second" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
netCDF4 | ||
requests | ||
beautifulsoup4 | ||
lxml | ||
cdasws | ||
cdflib>=0.4.4 | ||
lxml | ||
netCDF4 | ||
numpy | ||
pandas | ||
pysat>=3.0.4 | ||
cdasws | ||
requests | ||
xarray |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,12 @@ | ||
# name and version must be maintained here as well for python 3.6 compatibility | ||
|
||
[metadata] | ||
name = pysatNASA | ||
version = file: pysatNASA/version.txt | ||
url = https://github.com/pysat/pysatNASA | ||
author = Jeff Klenzing | ||
author_email = [email protected] | ||
description = 'pysat support for NASA Instruments' | ||
keywords = | ||
pysat | ||
ionosphere | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Topic :: Scientific/Engineering :: Physics | ||
Topic :: Scientific/Engineering :: Atmospheric Science | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: BSD License | ||
Natural Language :: English | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Operating System :: MacOS :: MacOS X | ||
Operating System :: POSIX :: Linux | ||
license_file = LICENSE | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
|
||
[options] | ||
python_requires = >= 3.5 | ||
setup_requires = | ||
setuptools >= 38.6 | ||
pip >= 10 | ||
include_package_data = True | ||
zip_safe = False | ||
packages = find: | ||
install_requires = | ||
cdasws | ||
netCDF4 | ||
requests | ||
beautifulsoup4 | ||
lxml | ||
cdflib | ||
numpy | ||
pandas | ||
xarray | ||
pysat | ||
|
||
[options.extras_require] | ||
all = | ||
pysatCDF | ||
|
||
[coverage:report] | ||
omit = | ||
*/instruments/templates/ | ||
version = 0.0.5 | ||
|
||
[flake8] | ||
max-line-length = 80 | ||
ignore = | ||
D200 | ||
D202 | ||
W503 | ||
|
||
[tool:pytest] | ||
markers = | ||
all_inst: tests all instruments | ||
download: tests for downloadable instruments | ||
no_download: tests for instruments without download support | ||
load_options: tests for instruments with additional options | ||
first: first tests to run | ||
second: second tests to run |
Oops, something went wrong.