diff --git a/README.md b/README.md index 90a8437..18f9e89 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Do not hesitate to report issues in the Github repository. ## Contributing -See [contributing](https://github.com/romainsacchi/carculator/blob/master/CONTRIBUTING.md). +See [contributing](https://github.com/romainsacchi/polyviz/blob/master/CONTRIBUTING.md). ## License diff --git a/polyviz.egg-info/PKG-INFO b/polyviz.egg-info/PKG-INFO index 245a041..6178f5b 100644 --- a/polyviz.egg-info/PKG-INFO +++ b/polyviz.egg-info/PKG-INFO @@ -91,7 +91,7 @@ Do not hesitate to report issues in the Github repository. ## Contributing -See [contributing](https://github.com/romainsacchi/carculator/blob/master/CONTRIBUTING.md). +See [contributing](https://github.com/romainsacchi/polyviz/blob/master/CONTRIBUTING.md). ## License diff --git a/polyviz/__init__.py b/polyviz/__init__.py index 096bbf4..30ac6cd 100644 --- a/polyviz/__init__.py +++ b/polyviz/__init__.py @@ -1,7 +1,7 @@ """ PolyViz init """ -__version__ = (1, 0, 0) +__version__ = (1, 0, 1) __all__ = ( "sankey", diff --git a/setup.py b/setup.py index 3fcb86c..ddc3808 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ this_directory = Path(__file__).parent README = (this_directory / "README.md").read_text() -for dirpath, dirnames, filenames in os.walk("carculator"): +for dirpath, dirnames, filenames in os.walk("polyviz"): # Ignore dirnames that start with '.' if "__init__.py" in filenames: pkg = dirpath.replace(os.path.sep, ".") @@ -34,7 +34,7 @@ def package_files(directory): setup( name="polyviz", - version="1.0.0", + version="1.0.1", packages=packages, author="Romain Sacchi ", license=open("LICENSE").read(),