-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
32 lines (30 loc) · 1.23 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup
VERSION = '3.3.1'
if __name__ == '__main__':
setup(
name='nd2reader',
packages=['nd2reader'],
install_requires=[
'numpy>=1.14',
'six>=1.4',
'xmltodict>=0.9.2',
'pims>=0.3.0'
],
python_requires=">=3.6",
version=VERSION,
description='A tool for reading ND2 files produced by NIS Elements',
author='Ruben Verweij',
author_email='[email protected]',
url='https://open-science-tools.github.io/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',
]
)