diff --git a/README.md b/README.md index d001757..9590935 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/setup.py b/setup.py index 69265d9..1aee9c5 100644 --- a/setup.py +++ b/setup.py @@ -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', ] -) +) \ No newline at end of file