Skip to content

Commit

Permalink
Updated for master
Browse files Browse the repository at this point in the history
  • Loading branch information
czgdp1807 committed Nov 14, 2021
1 parent 89ed503 commit 714586b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
master_doc = 'index'

# The full version, including alpha/beta/rc tags
release = '0.0.1'
release = '1.0.1-dev'


# -- General configuration ---------------------------------------------------
Expand Down
17 changes: 14 additions & 3 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,22 @@ code in C++ and Java as well.
Installation
============

You can install the package by running the following command,
After changing your directory to project root, you can
install the package by running the following command,

``pip install cz-pydatastructs==0.0.1``
``python -m pip install .``

Make sure that your python version is at least ``3.5``.
For development purposes, you can use the option `e` as shown below,

``python -m pip install -e .``

For building documentation execute the following commands one after
the other,

1. ``pip install -r docs/requirements.txt``
2. ``sphinx-build -b html docs/source/ docs/build/html``

Make sure that your python version is at least ``3.8``.

Why PyDataStructs?
==================
Expand Down
2 changes: 1 addition & 1 deletion pydatastructs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.1"
__version__ = "1.0.1-dev"

from .linear_data_structures import *
from .trees import *
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="cz-pydatastructs",
version="0.0.1",
version="1.0.1-dev",
author="PyDataStructs Development Team",
author_email="pydatastructs@googlegroups.com",
description="A python package for data structures",
Expand Down

0 comments on commit 714586b

Please sign in to comment.