Skip to content

Commit afc621c

Browse files
committed
uodate readme +dependencies
1 parent acfea8e commit afc621c

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ The Library has been tested on Linux and MacOSX. It requires a C++ compiler for
1717

1818
- Numpy (>=1.11)
1919
- Scipy (>=0.17)
20+
- Cython (>=0.23)
21+
- Matplotlib (>=1.5)
22+
Under debian based linux the dependencies can be installed with
23+
```
24+
sudo apt-get install python-numpy python-scipy python-matplotlib cython
25+
```
2026

2127
To install the library, you can install it locally (after downloading it) on you machine using
2228
```
@@ -37,7 +43,7 @@ Note that for easier access the module is name ot instead of pot.
3743

3844
## Examples
3945

40-
The examples folder contain several examples and use case for the library.
46+
The examples folder contain several examples and use case for the library. The full documentation is available on [Readthedoc](http://pot.readthedocs.io/)
4147

4248
Here is a list of the Python notebook if you want a quick look:
4349

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
license = 'MIT',
4040
scripts=[],
4141
data_files=[],
42-
requires=["numpy (>=1.11)","scipy (>=0.17)","cython (>=0.23)"],
42+
requires=["numpy (>=1.11)","scipy (>=0.17)","cython (>=0.23)","matplotlib (>=1.5)"],
43+
install_requires=["numpy (>=1.11)","scipy (>=0.17)","cython (>=0.23)","matplotlib (>=1.5)"],
4344
classifiers=[
4445
'Development Status :: 4 - Beta',
4546
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)