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.

22 lines
944 B

10 years ago
9 years ago
9 years ago
  1. from setuptools import setup, find_packages
  2. setup(
  3. name="nd2reader",
  4. packages=find_packages(),
  5. install_requires=['numpy>=1.9.2'],
  6. version="1.0.1",
  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/1.0.0',
  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. 'Topic :: Scientific/Engineering',
  20. ]
  21. )