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

10 years ago
  1. from setuptools import setup
  2. #from nd2reader import __version__ as VERSION
  3. if __name__ == '__main__':
  4. setup(
  5. name='nd2reader2',
  6. packages=['nd2reader2'],
  7. install_requires=[
  8. 'numpy>=1.6.2',
  9. 'six>=1.4',
  10. 'xmltodict>=0.9.2',
  11. 'PIMS>=0.5.0'
  12. ],
  13. version="0.0.1",
  14. description='A tool for reading ND2 files produced by NIS Elements',
  15. author='Lorenzo Zolfanelli',
  16. author_email='dev@zolfa.nl',
  17. url='https://projects.lilik.it/zolfa/nd2reader2',
  18. download_url='https://github.com/rbnvrw/nd2reader2/tarball/%s' % "0.0.1",
  19. keywords=['nd2', 'nikon', 'microscopy', 'NIS Elements'],
  20. classifiers=['Development Status :: 5 - Production/Stable',
  21. 'Intended Audience :: Science/Research',
  22. 'License :: Freely Distributable',
  23. 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  24. 'Operating System :: POSIX :: Linux',
  25. 'Programming Language :: Python :: 2.7',
  26. 'Programming Language :: Python :: 3.4',
  27. 'Topic :: Scientific/Engineering',
  28. ]
  29. )