1+ [bumpversion]
2+ current_version = 0.1.0
3+ commit = True
4+ tag = True
5+
16[metadata]
27name = xpartition
38version = attr: xpartition.__version__
@@ -6,46 +11,41 @@ author_email = spencerkclark@gmail.com
611license = MIT License
712description = Tool for writing large xarray datasets to zarr stores with independent processes
813url = https://github.com/spencerkclark/xpartition
9- classifiers =
10- Development Status :: 2 - Pre-Alpha
11- License :: OSI Approved :: MIT License
12- Operating System :: OS Independent
13- Intended Audience :: Science/Research
14- Programming Language :: Python
15- Programming Language :: Python :: 3
16- Topic :: Scientific/Engineering
14+ classifiers =
15+ Development Status :: 2 - Pre-Alpha
16+ License :: OSI Approved :: MIT License
17+ Operating System :: OS Independent
18+ Intended Audience :: Science/Research
19+ Programming Language :: Python
20+ Programming Language :: Python :: 3
21+ Topic :: Scientific/Engineering
1722
1823[options]
1924packages = find:
2025py_modules = xpartition
2126zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
2227include_package_data = True
2328python_requires = >=3.6
24- install_requires =
25- xarray >= 0.16.2
26- dask[array] >= 2.9.0
27- setuptools >= 38.4 # For pkg_resources
28- dataclasses; python_version == "3.6"
29- zarr
30- setup_requires =
31- setuptools >= 38.4
32- setuptools_scm
29+ install_requires =
30+ xarray >= 0.16.2
31+ dask[array] >= 2.9.0
32+ setuptools >= 38.4 # For pkg_resources
33+ dataclasses; python_version == "3.6"
34+ zarr
35+ setup_requires =
36+ setuptools >= 38.4
37+ setuptools_scm
3338
3439[flake8]
35- ignore =
36- E203 # whitespace before ':' - doesn't work well with black
37- E402 # module level import not at top of file
38- E501 # line too long - let black worry about that
39- E731 # do not assign a lambda expression, use a def
40- W503 # line break before binary operator
41- exclude =
42- .eggs
43- doc
44-
45- [bumpversion]
46- current_version = 0.0.0
47- commit = True
48- tag = True
40+ ignore =
41+ E203 # whitespace before ':' - doesn't work well with black
42+ E402 # module level import not at top of file
43+ E501 # line too long - let black worry about that
44+ E731 # do not assign a lambda expression, use a def
45+ W503 # line break before binary operator
46+ exclude =
47+ .eggs
48+ doc
4949
5050[bumpversion:file:xpartition.py]
5151search = __version__ = " {current_version}"
0 commit comments