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.

20 lines
910 B

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