Skip to content
Snippets Groups Projects
Select Git revision
  • c5ac2d6b11b4bb6cf79505e2f21838bf6de87eb6
  • master default protected
  • dev
  • install
  • new_master
  • protein_ortho
  • documentation
  • pr18
  • dev-licence
  • docker
  • prodigal_train
  • containers
  • module_all
  • functional_tests
  • opti
  • helpers
  • v1.4.1
  • v1.4.0
  • v1.3.1
  • v1.3.0
  • v1.2.0
  • v1.1.0
  • v1.0.1
  • v1.0
24 results

test_genome_func.py

Blame
  • setup.py 1.29 KiB
    from setuptools import setup
    from nd2reader import __version__
    
    if __name__ == '__main__':
        setup(
            name='nd2reader',
            packages=['nd2reader', 'nd2reader.model', 'nd2reader.driver', 'nd2reader.parser', 'nd2reader.common'],
            install_requires=[
                'numpy>=1.6.2, <2.0',
                'six>=1.4, <2.0',
                'xmltodict>=0.9.2, <1.0'
            ],
            version=__version__,
            description='A tool for reading ND2 files produced by NIS Elements',
            author='Jim Rybarski',
            author_email='jim@rybarski.com',
            url='https://github.com/jimrybarski/nd2reader',
            download_url='https://github.com/jimrybarski/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',
                         ]
        )