|
|
@ -2,7 +2,7 @@ from distutils.core import setup |
|
|
|
|
|
|
|
setup( |
|
|
|
name="nd2reader", |
|
|
|
packages=['nd2reader'], |
|
|
|
packages=['nd2reader', 'nd2reader.model'], |
|
|
|
version="1.0.0", |
|
|
|
description='A tool for reading ND2 files produced by NIS Elements', |
|
|
|
author='Jim Rybarski', |
|
|
@ -10,5 +10,12 @@ 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=['Development Status :: 5 - Production/Stable', |
|
|
|
'Intended Audience :: Science/Research', |
|
|
|
'License :: Freely Distributable', |
|
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', |
|
|
|
'Operating System :: POSIX :: Linux', |
|
|
|
'Programming Language :: Python :: 2.7', |
|
|
|
'Topic :: Scientific/Engineering', |
|
|
|
] |
|
|
|
) |