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.

14 lines
472 B

10 years ago
10 years ago
  1. from setuptools import setup, find_packages
  2. setup(
  3. name="nd2reader",
  4. packages=find_packages(),
  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=[],
  13. )