Browse Source

#26 fix installation

zolfa-add_slices_loading
Jim Rybarski 9 years ago
parent
commit
fde3f028a2
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      requirements.txt
  2. +3
    -3
      setup.py

+ 1
- 1
requirements.txt View File

@ -1 +1 @@
numpy
numpy>=1.9.2

+ 3
- 3
setup.py View File

@ -1,8 +1,8 @@
from setuptools import setup, find_packages
from distutils.core import setup
setup(
name="nd2reader",
packages=find_packages(),
packages=['nd2reader'],
version="1.0.0",
description='A tool for reading ND2 files produced by NIS Elements',
author='Jim Rybarski',
@ -10,5 +10,5 @@ setup(
url='https://github.com/jimrybarski/nd2reader',
download_url='https://github.com/jimrybarski/nd2reader/tarball/1.0.0',
keywords=['nd2', 'nikon', 'microscopy', 'NIS Elements'],
classifiers=[],
classifiers=[]
)

Loading…
Cancel
Save