diff --git a/README.md b/README.md index 5a170fe5..f16f0067 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@
@@ -22,17 +22,18 @@ These modules can be edited by users to define additional functionality and test ## Installing SeQUeNCe requires an installation of Python 3.8 or later. This can be found at the [Python Website](https://www.python.org/downloads/). -Then, simply download the package, navigate to its directory, and install with + +You can install with: +``` +pip install sequence +``` + +Or, download the package, navigate to its directory, and install with ``` git clone https://github.com/sequence-toolbox/SeQUeNCe.git cd SeQUeNCe pip install . ``` -Or, replace `pip install .` with the included makefile, -``` -$ make install -``` -This will install the sequence library as well as the package dependencies. ## Citation Please cite us, thank you! diff --git a/docs/source/conf.py b/docs/source/conf.py index cd09b2e9..d8e67c89 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Xiaoliang Wu, Joaquin Chung, Alexander Kolar, Eugene Wang, Tian Zhong, Rajkumar Kettimuthu, Martin Suchara' # The full version, including alpha/beta/rc tags -release = '0.6.2' +release = '0.6.2.2' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 3b10c82f..382ef29d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sequence" -version = "0.6.2" +version = "0.6.2.2" description = "Simulator of QUantum Network Communication (SeQUeNCe) is an open-source tool that allows modeling of quantum networks including photonic network components, control protocols, and applications." readme = "README.md" requires-python = ">=3.8" diff --git a/setup.py b/setup.py index a43aaba2..8400d437 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="sequence", - version="0.6.2", + version="0.6.2.2", author="Xiaoliang Wu, Joaquin Chung, Alexander Kolar, Alexander Kiefer, Eugene Wang, Tian Zhong, Rajkumar Kettimuthu, Martin Suchara", author_email="xwu64@hawk.iit.edu, chungmiranda@anl.gov, akolar@anl.gov, akiefer@iu.edu, eugenewang@yahoo.com, tzh@uchicago.edu, kettimut@mcs.anl.gov, msuchara@anl.gov", description="Simulator of Quantum Network Communication: SEQUENCE-Python is a prototype version of the official SEQUENCE release.", diff --git a/src/__init__.py b/src/__init__.py index 060d844c..708f9dd8 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,7 +1,7 @@ __all__ = ['app', 'components', 'entanglement_management', 'kernel', 'network_management', 'qkd', 'resource_management', 'topology', 'utils', 'message', 'protocol', 'gui'] -__version__ = '0.6.2' +__version__ = '0.6.2.2' def __dir__(): return sorted(__all__)