-
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.
- Loading branch information
1 parent
bb0b6aa
commit 46eca21
Showing
2 changed files
with
32 additions
and
32 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,3 +1,8 @@ | ||
[bumpversion] | ||
current_version = 0.1.0 | ||
commit = True | ||
tag = True | ||
|
||
[metadata] | ||
name = xpartition | ||
version = attr: xpartition.__version__ | ||
|
@@ -6,46 +11,41 @@ author_email = [email protected] | |
license = MIT License | ||
description = Tool for writing large xarray datasets to zarr stores with independent processes | ||
url = https://github.com/spencerkclark/xpartition | ||
classifiers = | ||
Development Status :: 2 - Pre-Alpha | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
Intended Audience :: Science/Research | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Topic :: Scientific/Engineering | ||
classifiers = | ||
Development Status :: 2 - Pre-Alpha | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
Intended Audience :: Science/Research | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Topic :: Scientific/Engineering | ||
|
||
[options] | ||
packages = find: | ||
py_modules = xpartition | ||
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html | ||
include_package_data = True | ||
python_requires = >=3.6 | ||
install_requires = | ||
xarray >= 0.16.2 | ||
dask[array] >= 2.9.0 | ||
setuptools >= 38.4 # For pkg_resources | ||
dataclasses; python_version == "3.6" | ||
zarr | ||
setup_requires = | ||
setuptools >= 38.4 | ||
setuptools_scm | ||
install_requires = | ||
xarray >= 0.16.2 | ||
dask[array] >= 2.9.0 | ||
setuptools >= 38.4 # For pkg_resources | ||
dataclasses; python_version == "3.6" | ||
zarr | ||
setup_requires = | ||
setuptools >= 38.4 | ||
setuptools_scm | ||
|
||
[flake8] | ||
ignore = | ||
E203 # whitespace before ':' - doesn't work well with black | ||
E402 # module level import not at top of file | ||
E501 # line too long - let black worry about that | ||
E731 # do not assign a lambda expression, use a def | ||
W503 # line break before binary operator | ||
exclude= | ||
.eggs | ||
doc | ||
|
||
[bumpversion] | ||
current_version = 0.0.0 | ||
commit = True | ||
tag = True | ||
ignore = | ||
E203 # whitespace before ':' - doesn't work well with black | ||
E402 # module level import not at top of file | ||
E501 # line too long - let black worry about that | ||
E731 # do not assign a lambda expression, use a def | ||
W503 # line break before binary operator | ||
exclude = | ||
.eggs | ||
doc | ||
|
||
[bumpversion:file:xpartition.py] | ||
search = __version__ = "{current_version}" | ||
|
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