diff --git a/setup.cfg b/setup.cfg index 41206b2..582f4ca 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = True @@ -10,11 +10,11 @@ author = Spencer K. Clark author_email = spencerkclark@gmail.com license = MIT License description = Tool for writing large xarray datasets to zarr stores with independent processes -long_description = - xpartition provides a way to split N-dimensional dask-backed arrays into - a user-specified number of blocks of dask chunks. This can be useful for - assigning work to batch jobs on HPC systems or Dataflow workers in an - Apache Beam pipeline in the cloud. +long_description = + xpartition provides a way to split N-dimensional dask-backed arrays into + a user-specified number of blocks of dask chunks. This can be useful for + assigning work to batch jobs on HPC systems or Dataflow workers in an + Apache Beam pipeline in the cloud. long_description_content_type = text/plain url = https://github.com/spencerkclark/xpartition classifiers = diff --git a/xpartition.py b/xpartition.py index 2bc0301..ffc2e9b 100644 --- a/xpartition.py +++ b/xpartition.py @@ -10,7 +10,7 @@ from typing import Callable, Dict, Hashable, Sequence, Tuple, Mapping -__version__ = "0.1.0" +__version__ = "0.2.0" Region = Sequence[Mapping[Hashable, slice]]