|
6 | 6 | composed of many modes and generating complex time-dependent control Hamiltonians
|
7 | 7 | for [master equation simulations](http://qutip.org/docs/latest/guide/dynamics/dynamics-master.html).
|
8 | 8 |
|
9 |
| -### Requirements: |
| 9 | +## Documentation |
10 | 10 |
|
11 |
| -- `python>=3.7` (``sequencing`` is tested on 3.7, 3.8, and 3.9) |
12 |
| -- [`qutip>=4.5`](http://qutip.org/docs/latest/installation.html) |
13 |
| -- [`attrs>=20`](https://www.attrs.org/en/stable/index.html) |
14 |
| -- [`tqdm`](https://tqdm.github.io/) |
15 |
| -- [`lmfit`](https://lmfit.github.io/lmfit-py/) |
| 11 | +The documentation for `sequencing` is available at: |
| 12 | +[https://sequencing.readthedocs.io/](https://sequencing.readthedocs.io/) |
16 | 13 |
|
17 |
| -### Installing from source: |
18 |
| - |
19 |
| -- Clone the `sequencing` repo |
20 |
| -- Create a conda environment |
21 |
| - - `conda create -n <env-name> python=<3.7, 3.8, or 3.9>` |
22 |
| -- Activate the conda environment |
23 |
| - - `conda activate <env-name>` |
24 |
| -- Install `sequencing` |
25 |
| - - `pip install -e .`, or |
26 |
| - - `python setup.py develop` (or `install`) |
27 |
| - |
28 |
| - |
29 |
| -**Important note for Windows users:** |
30 |
| - |
31 |
| ->[QuTip: Installation on MS Windows:](http://qutip.org/docs/latest/installation.html#installation-on-ms-windows) As of QuTiP 4.1, recommended installation on Windows requires Python 3.5+, as well as Visual Studio 2015... When installing Visual Studio 2015 be sure to select options for the C++ compiler... The ‘Community’ edition of Visual Studio 2015 is free... |
32 |
| -
|
33 |
| -### Getting started: |
34 |
| - |
35 |
| -Check out the tutorial notebooks [here](docs/source/notebooks) |
36 |
| - |
37 |
| -### Unit tests: |
38 |
| - |
39 |
| -Run all of the unit tests from a Python session using |
40 |
| - |
41 |
| -``` python |
42 |
| ->>> import sequencing.testing as st |
43 |
| ->>> st.run() |
44 |
| -``` |
45 |
| - |
46 |
| -Or run them from the command line, using |
| 14 | +## Installation |
47 | 15 |
|
48 | 16 | ```
|
49 |
| -pytest --cov |
| 17 | +pip install sequencing |
50 | 18 | ```
|
51 | 19 |
|
52 |
| -### Contributing: |
53 |
| -Want to contribute to `sequencing`? Check out our [contribution guidelines](CONTRIBUTING.md). |
54 |
| - |
55 |
| - |
56 |
| -### Making the docs: |
| 20 | +For more details, see the [documentation](https://sequencing.readthedocs.io/en/latest/installation.html). |
57 | 21 |
|
58 |
| -Make an HTML version of the documentation. |
| 22 | +## Contributing: |
59 | 23 |
|
60 |
| -> **Note**: This might require installing [Pandoc](https://pandoc.org/installing.html). |
61 |
| -
|
62 |
| -``` |
63 |
| -pip install sphinx sphinx_rtd_theme nbsphinx |
64 |
| -cd docs |
65 |
| -make html |
66 |
| -``` |
| 24 | +Want to contribute to `sequencing`? Check out our [contribution guidelines](CONTRIBUTING.md). |
0 commit comments