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.

29 lines
1.1 KiB

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