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.

31 lines
1.2 KiB

10 years ago
5 years ago
  1. from os import path
  2. from setuptools import setup
  3. from nd2reader import __version__ as VERSION
  4. if __name__ == '__main__':
  5. setup(
  6. name='nd2reader',
  7. packages=['nd2reader'],
  8. install_requires=[
  9. 'numpy>=1.6.2',
  10. 'six>=1.4',
  11. 'xmltodict>=0.9.2',
  12. 'pims>=0.3.0'
  13. ],
  14. version=VERSION,
  15. description='A tool for reading ND2 files produced by NIS Elements',
  16. author='Ruben Verweij',
  17. author_email='ruben@lighthacking.nl',
  18. url='https://github.com/rbnvrw/nd2reader',
  19. download_url='https://github.com/rbnvrw/nd2reader/tarball/%s' % VERSION,
  20. keywords=['nd2', 'nikon', 'microscopy', 'NIS Elements'],
  21. classifiers=['Development Status :: 5 - Production/Stable',
  22. 'Intended Audience :: Science/Research',
  23. 'License :: Freely Distributable',
  24. 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  25. 'Operating System :: POSIX :: Linux',
  26. 'Programming Language :: Python :: 2.7',
  27. 'Programming Language :: Python :: 3.4',
  28. 'Topic :: Scientific/Engineering',
  29. ]
  30. )