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.

24 lines
995 B

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