You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
1.2 KiB

from setuptools import setup
#from nd2reader import __version__ as VERSION
if __name__ == '__main__':
setup(
name='nd2reader2',
packages=['nd2reader2'],
install_requires=[
'numpy>=1.6.2',
'six>=1.4',
'xmltodict>=0.9.2',
'PIMS>=0.5.0'
],
version="0.0.1",
description='A tool for reading ND2 files produced by NIS Elements',
author='Lorenzo Zolfanelli',
author_email='dev@zolfa.nl',
url='https://projects.lilik.it/zolfa/nd2reader2',
download_url='https://github.com/rbnvrw/nd2reader2/tarball/%s' % "0.0.1",
keywords=['nd2', 'nikon', 'microscopy', 'NIS Elements'],
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',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
]
)