File tree Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 26
26
master_doc = 'index'
27
27
28
28
# The full version, including alpha/beta/rc tags
29
- release = '0 .0.1'
29
+ release = '1 .0.1-dev '
30
30
31
31
32
32
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change @@ -23,11 +23,22 @@ code in C++ and Java as well.
23
23
Installation
24
24
============
25
25
26
- You can install the package by running the following command,
26
+ After changing your directory to project root, you can
27
+ install the package by running the following command,
27
28
28
- ``pip install cz-pydatastructs==0.0.1 ``
29
+ ``python -m pip install . ``
29
30
30
- Make sure that your python version is at least ``3.5 ``.
31
+ For development purposes, you can use the option `e ` as shown below,
32
+
33
+ ``python -m pip install -e . ``
34
+
35
+ For building documentation execute the following commands one after
36
+ the other,
37
+
38
+ 1. ``pip install -r docs/requirements.txt ``
39
+ 2. ``sphinx-build -b html docs/source/ docs/build/html ``
40
+
41
+ Make sure that your python version is at least ``3.8 ``.
31
42
32
43
Why PyDataStructs?
33
44
==================
Original file line number Diff line number Diff line change 1
- __version__ = "0 .0.1"
1
+ __version__ = "1 .0.1-dev "
2
2
3
3
from .linear_data_structures import *
4
4
from .trees import *
Original file line number Diff line number Diff line change 5
5
6
6
setuptools .setup (
7
7
name = "cz-pydatastructs" ,
8
- version = "0 .0.1" ,
8
+ version = "1 .0.1-dev " ,
9
9
author = "PyDataStructs Development Team" ,
10
10
author_email = "pydatastructs@googlegroups.com" ,
11
11
description = "A python package for data structures" ,
You can’t perform that action at this time.
0 commit comments