Browse Source

better install

zolfa-add_slices_loading
Jim Rybarski 9 years ago
parent
commit
5daf8a390a
2 changed files with 10 additions and 8 deletions
  1. +6
    -3
      README.md
  2. +4
    -5
      setup.py

+ 6
- 3
README.md View File

@ -10,13 +10,16 @@
### Installation
Just use pip:
Just use pip (`numpy` is required):
`pip install nd2reader`
`pip install numpy nd2reader`
If you want to install via git, clone the repo and run:
`python setup.py install`
```
pip install numpy
python setup.py install
```
### ND2s


+ 4
- 5
setup.py View File

@ -1,10 +1,9 @@
from setuptools import setup, find_packages
from distutils.core import setup
setup(
name="nd2reader",
packages=find_packages(),
requires=['numpy (>=1.6.1)'],
version="1.0.1",
packages=['nd2reader', 'nd2reader.model'],
version="1.0.0",
description='A tool for reading ND2 files produced by NIS Elements',
author='Jim Rybarski',
author_email='jim@rybarski.com',
@ -19,4 +18,4 @@ setup(
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
]
)
)

Loading…
Cancel
Save