-
Notifications
You must be signed in to change notification settings - Fork 3
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 #137 from pysat/maint/pyproject
MAINT: pyproject, pysat style updates
- Loading branch information
Showing
22 changed files
with
205 additions
and
108 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.10" | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
|
||
# Optionally declare the Python requirements required to build your docs | ||
python: | ||
install: | ||
- method: pip | ||
path: . | ||
extra_requirements: | ||
- doc |
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
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,75 @@ | ||
[build-system] | ||
requires = ["setuptools >= 38.6", "pip >= 10"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pysatModels" | ||
version = "0.1.0" | ||
description = "Supports model analysis and model-data comparisons" | ||
readme = "README.md" | ||
requires-python = ">=3.6" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "Pysat Development Team", email = "[email protected]"}, | ||
] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Intended Audience :: Science/Research", | ||
"License :: Freely Distributable", | ||
"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 :: MacOS :: MacOS X", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: Microsoft :: Windows" | ||
] | ||
dependencies = [ | ||
"numpy", | ||
"packaging", | ||
"pandas", | ||
"pyForecastTools", | ||
"pysat >= 3.0.4", | ||
"pysatNASA <= 0.0.4", | ||
"requests", | ||
"scipy", | ||
"xarray" | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"coveralls < 3.3", | ||
"flake8", | ||
"flake8-docstrings", | ||
"hacking >= 1.0", | ||
"pytest-cov", | ||
"pytest-ordering" | ||
] | ||
doc = [ | ||
"extras_require", | ||
"m2r2", | ||
"numpydoc", | ||
"sphinx", | ||
"sphinx_rtd_theme >= 1.2.2, < 2.0.0" | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://pysatmodels.readthedocs.io/en/latest/" | ||
Source = "https://github.com/pysat/pysatModels" | ||
|
||
[tool.coverage.report] | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "--cov=pysatModels" | ||
markers = [ | ||
"all_inst", | ||
"download", | ||
"no_download", | ||
"load_options", | ||
"new_tests", | ||
"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 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
Oops, something went wrong.