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.

28 lines
1.1 KiB

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