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.

30 lines
1.3 KiB

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