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.

35 lines
1.4 KiB

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