-
Notifications
You must be signed in to change notification settings - Fork 54
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 #565 from yuvipanda/pyproject.toml
Move almost everything to pyproject.toml
- Loading branch information
Showing
2 changed files
with
79 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,85 @@ | ||
[tool.black] | ||
line-length = 100 | ||
|
||
# pyproject.toml | ||
[build-system] | ||
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pangeo-forge-recipes" | ||
dynamic = ["version"] | ||
requires-python = ">=3.8" | ||
description = "Pipeline tools for building and publishing analysis ready datasets." | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "Ryan Abernathey", email = "[email protected]" } | ||
] | ||
classifiers = [ | ||
"Development Status :: 1 - Planning", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Topic :: Scientific/Engineering", | ||
] | ||
license = { text = "Apache-2.0" } | ||
keywords = ["pangeo", "data"] | ||
dependencies = [ | ||
"setuptools", | ||
"dask >= 2021.11.2", | ||
"distributed >= 2021.11.2", | ||
"cftime", | ||
"h5py >= 3.3.0", | ||
"intake >= 0.6.4", | ||
"intake-xarray >= 0.4.1", | ||
"xarray >=0.18.0", | ||
"netcdf4", | ||
"h5netcdf", | ||
"zarr >= 2.12.0", | ||
"numcodecs >= 0.9.0", | ||
"fsspec[http] >= 2021.6.0", | ||
"kerchunk >= 0.0.7", | ||
"mypy_extensions >= 0.4.2" | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"click", | ||
"pytest", | ||
"pytest-sugar", | ||
"pytest-cov", | ||
"pytest-lazy-fixture", | ||
"scipy" | ||
] | ||
|
||
|
||
[project.urls] | ||
Homepage = "https://github.com/pangeo-forge/pangeo-forge-recipes" | ||
Tracker = "https://github.com/pangeo-forge/pangeo-forge-recipes/issues" | ||
Documentation = "https://pangeo-forge.readthedocs.io/en/latest/" | ||
|
||
[tool.setuptools_scm] | ||
write_to = "pangeo_forge_recipes/_version.py" | ||
write_to_template = "__version__ = '{version}'" | ||
|
||
[tool.black] | ||
line-length = 100 | ||
|
||
[tool.isort] | ||
known_first_party = "pangeo_forge_recipes" | ||
known_third_party = ["aiohttp", "apache_beam", "cftime", "click", "dask", "fsspec", "kerchunk", "numpy", "pandas", "pytest", "pytest_lazyfixture", "s3fs", "setuptools", "ujson", "xarray", "zarr"] | ||
multi_line_output = 3 | ||
include_trailing_comma = true | ||
force_grid_wrap = 0 | ||
combine_as_imports = true | ||
line_length = 100 | ||
|
||
[tool.pytest.ini_options] | ||
log_cli = false | ||
timeout = 30 | ||
timeout_method = "signal" | ||
addopts = "--ignore-glob=tests/recipe_tests/*" | ||
markers = [ | ||
"no_executor: Tests that do not use an executor fixture.", | ||
"executor_function: Tests that use the Python function executor.", | ||
] |
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,78 +1,8 @@ | ||
[metadata] | ||
name = pangeo-forge-recipes | ||
description = Pipeline tools for building and publishing analysis ready datasets. | ||
long_description = file:README.md | ||
long_description_content_type = text/markdown | ||
maintainer = Ryan Abernathey | ||
maintainer_email = [email protected] | ||
classifiers = | ||
Development Status :: 1 - Planning | ||
License :: OSI Approved :: Apache Software License | ||
Operating System :: OS Independent | ||
Intended Audience :: Science/Research | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Topic :: Scientific/Engineering | ||
|
||
url = https://github.com/pangeo-forge/pangeo-forge-recipes | ||
license = Apache | ||
keywords = pangeo, data | ||
|
||
[options] | ||
zip_safe = False | ||
python_requires = >=3.8 | ||
packages = find: | ||
include_package_data = True | ||
install_requires = | ||
setuptools | ||
dask >= 2021.11.2 | ||
distributed >= 2021.11.2 | ||
cftime | ||
h5py >= 3.3.0 | ||
intake >= 0.6.4 | ||
intake-xarray >= 0.4.1 | ||
xarray >=0.18.0 | ||
netcdf4 | ||
h5netcdf | ||
zarr >= 2.6.0 | ||
numcodecs >= 0.9.0 | ||
fsspec[http] >= 2021.6.0 | ||
kerchunk >= 0.1.0 | ||
mypy_extensions >= 0.4.2 | ||
|
||
[options.extras_require] | ||
dev = | ||
click | ||
pytest | ||
pytest-sugar | ||
pytest-cov | ||
pytest-lazy-fixture | ||
scipy | ||
# Everything here should be moved to pyproject.toml or similar | ||
|
||
[flake8] | ||
max-line-length = 100 | ||
|
||
[isort] | ||
known_first_party=pangeo_forge_recipes | ||
known_third_party=aiohttp,apache_beam,cftime,click,dask,fsspec,kerchunk,numpy,pandas,pytest,pytest_lazyfixture,s3fs,setuptools,ujson,xarray,zarr | ||
multi_line_output=3 | ||
include_trailing_comma=True | ||
force_grid_wrap=0 | ||
combine_as_imports=True | ||
line_length=100 | ||
|
||
[tool:pytest] | ||
log_cli = False | ||
timeout = 30 | ||
timeout_method = signal | ||
addopts = --ignore-glob=tests/recipe_tests/* | ||
markers = | ||
no_executor: Tests that do not use an executor fixture. | ||
executor_function: Tests that use the Python function executor. | ||
|
||
|
||
# remove this once rechunker executors are factored into a standalone package | ||
# that exports type hints (https://mypy.readthedocs.io/en/latest/installed_packages.html#installed-packages) | ||
|
||
|