diff --git a/README.rst b/README.rst index f0ea23d..32d7b7b 100644 --- a/README.rst +++ b/README.rst @@ -11,7 +11,12 @@ Making point clouds fun again :target: https://mybinder.org/v2/gh/daavoo/pyntcloud/master :alt: Start in Binder -.. image:: /docs/images/pyntcloud_logo.png +.. image:: https://img.shields.io/pypi/v/pyntcloud + :target: https://https://pypi.org/project/pyntcloud/ + :alt: Pypi + +.. image:: https://raw.githubusercontent.com/daavoo/pyntcloud/master/docs/images/pyntcloud_logo.png + :alt: pyntcloud logo **pyntcloud** is a Python **3** library for working with 3D point clouds leveraging the power of the Python scientific stack. diff --git a/docs/conf.py b/docs/conf.py index 1044661..8a4659e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -67,9 +67,9 @@ # built documents. # # The short X.Y version. -version = '0.0.2' +version = '0.1.0' # The full version, including alpha/beta/rc tags. -release = '0.0.2' +release = '0.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 55c1179..b0af707 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.0.2' +version = '0.1.0' with open("README.rst", "r") as fh: long_description = fh.read()