Skip to content
Snippets Groups Projects
Select Git revision
  • 29fcb53a9c6a76c90f4d34da21cbd551a32db628
  • master default protected
  • upstream/backport/20220103
  • feature/load_slices
  • v3.4.1 protected
  • v3.4.0 protected
6 results

setup.py

Blame
  • setup.py 1.20 KiB
    from setuptools import setup
    
    VERSION = '3.1.0'
    
    if __name__ == '__main__':
        setup(
            name='nd2reader',
            packages=['nd2reader'],
            install_requires=[
                'numpy>=1.6.2',
                'six>=1.4',
                'xmltodict>=0.9.2',
                'pims>=0.3.0'
            ],
            version=VERSION,
            description='A tool for reading ND2 files produced by NIS Elements',
            author='Ruben Verweij',
            author_email='verweij@physics.leidenuniv.nl',
            url='https://github.com/rbnvrw/nd2reader',
            download_url='https://github.com/rbnvrw/nd2reader/tarball/%s' % VERSION,
            keywords=['nd2', 'nikon', 'microscopy', 'NIS Elements'],
            classifiers=['Development Status :: 5 - Production/Stable',
                         'Intended Audience :: Science/Research',
                         'License :: Freely Distributable',
                         'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
                         'Operating System :: POSIX :: Linux',
                         'Programming Language :: Python :: 2.7',
                         'Programming Language :: Python :: 3.4',
                         'Topic :: Scientific/Engineering',
                         ]
        )