-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
68 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
# List required packages in this file, one per line. | ||
numpy>=1.7.1 | ||
vtk>=8.1.0 | ||
scipy>=0.9 | ||
-r requirements/default.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# pip requirements files | ||
|
||
## Index | ||
|
||
- [default.txt](default.txt) Default requirements | ||
- [docs.txt](docs.txt) Documentation requirements | ||
- [optional.txt](optional.txt) Optional requirements | ||
- [test.txt](test.txt) Requirements for running test suite | ||
|
||
## Examples | ||
|
||
### Installing requirements | ||
|
||
```bash | ||
$ pip install -U -r requirements/default.txt | ||
$ pip install -U -r requirements/optional.txt | ||
``` | ||
|
||
or | ||
|
||
```bash | ||
conda install --yes --file=requirements/default.txt --file=requirements/optional.txt | ||
``` | ||
|
||
### Running the tests | ||
|
||
```bash | ||
$ pip install -U -r requirements/default.txt | ||
$ pip install -U -r requirements/test.txt | ||
``` | ||
|
||
or | ||
|
||
```bash | ||
conda install --yes --file=requirements/default.txt --file=requirements/test.txt | ||
``` | ||
|
||
### Running the Docs | ||
|
||
```bash | ||
$ pip install -U -r requirements/default.txt | ||
$ pip install -U -r requirements/optional.txt | ||
$ pip install -U -r requirements/docs.txt | ||
``` | ||
|
||
or | ||
|
||
```bash | ||
conda install --yes --file=requirements/default.txt --file=requirements/optional.txt --file=requirements/docs.txt | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# List required packages in this file, one per line. | ||
numpy>=1.7.1 | ||
vtk>=8.1.0 | ||
scipy>=0.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# These are dependencies of various sphinx extensions for documentation. | ||
sphinx | ||
ipython | ||
matplotlib | ||
numpydoc | ||
sphinx-copybutton | ||
sphinx-gallery | ||
pillow | ||
sphinx_rtd_theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
matplotlib>=2.0.0 | ||
dipy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters