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.

32 lines
1.1 KiB

10 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. from setuptools import setup
  2. <<<<<<< HEAD
  3. VERSION = "1.1.2"
  4. =======
  5. VERSION = "1.1.1"
  6. >>>>>>> origin/master
  7. setup(
  8. name="nd2reader",
  9. packages=['nd2reader', 'nd2reader.model'],
  10. install_requires=[
  11. 'numpy>=1.6.2, <2.0',
  12. 'six>=1.4, <2.0'
  13. ],
  14. version=VERSION,
  15. description='A tool for reading ND2 files produced by NIS Elements',
  16. author='Jim Rybarski',
  17. author_email='jim@rybarski.com',
  18. url='https://github.com/jimrybarski/nd2reader',
  19. download_url='https://github.com/jimrybarski/nd2reader/tarball/%s' % VERSION,
  20. keywords=['nd2', 'nikon', 'microscopy', 'NIS Elements'],
  21. classifiers=['Development Status :: 5 - Production/Stable',
  22. 'Intended Audience :: Science/Research',
  23. 'License :: Freely Distributable',
  24. 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  25. 'Operating System :: POSIX :: Linux',
  26. 'Programming Language :: Python :: 2.7',
  27. 'Programming Language :: Python :: 3.4',
  28. 'Topic :: Scientific/Engineering',
  29. ]
  30. )