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