From 38db0959954de345a8d3fc99583ea3edb14c5dea Mon Sep 17 00:00:00 2001 From: Gagandeep Singh Date: Sun, 24 Oct 2021 19:34:45 +0530 Subject: [PATCH] added version details --- docs/source/conf.py | 2 +- pydatastructs/__init__.py | 2 ++ setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 383c5d0ba..1b4721a6e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ master_doc = 'index' # The full version, including alpha/beta/rc tags -release = 'dev' +release = '0.0.1-dev' # -- General configuration --------------------------------------------------- diff --git a/pydatastructs/__init__.py b/pydatastructs/__init__.py index eecf5f905..5568ebd3d 100644 --- a/pydatastructs/__init__.py +++ b/pydatastructs/__init__.py @@ -1,3 +1,5 @@ +__version__ = "0.0.1-dev" + from .linear_data_structures import * from .trees import * from .miscellaneous_data_structures import * diff --git a/setup.py b/setup.py index 0bac5f40c..2d23ecdd0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="pydatastructs", - version="0.0.0", + version="0.0.1-dev", author="PyDataStructs Development Team", author_email="pydatastructs@googlegroups.com", description="A python package for data structures",