Browse Source

Update readme for release on PyPi

zolfa-add_slices_loading
Ruben Verweij 7 years ago
parent
commit
2585f544c8
2 changed files with 5 additions and 5 deletions
  1. +2
    -2
      README.md
  2. +3
    -3
      setup.py

+ 2
- 2
README.md View File

@ -16,10 +16,10 @@ The documentation is available [here](http://www.lighthacking.nl/nd2reader/).
### Installation
For now, the package is only available via GitHub. Install it using:
The package is available on PyPi. Install it using:
```
pip install --upgrade https://github.com/rbnvrw/nd2reader/tarball/master
pip install nd2reader
```
If you don't already have the packages `numpy`, `pims`, `six` and `xmltodict`, they will be installed automatically if you use the `setup.py` script.


+ 3
- 3
setup.py View File

@ -7,9 +7,9 @@ if __name__ == '__main__':
name='nd2reader',
packages=['nd2reader'],
install_requires=[
'numpy>=1.6.2, <2.0',
'six>=1.4, <2.0',
'xmltodict>=0.9.2, <1.0',
'numpy>=1.6.2',
'six>=1.4',
'xmltodict>=0.9.2',
'pims>=0.3.0'
],
version=VERSION,


Loading…
Cancel
Save