@ -0,0 +1,10 @@ | |||||
[build-system] | |||||
requires = [ | |||||
"setuptools>=42", | |||||
"wheel", | |||||
"setuptools_scm[toml]>3.4", | |||||
] | |||||
build-backend = "setuptools.build_meta" | |||||
[tool.setuptools_scm] | |||||
write_to = "src/zolfa/nd2reader/version.py" |
@ -1,5 +1,42 @@ | |||||
[metadata] | [metadata] | ||||
name = zolfa-nd2reader | |||||
version = attr:zolfa.nd2reader.version | |||||
description = A tool for reading ND2 files produced by NIS Elements | |||||
description-file = README.md | description-file = README.md | ||||
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 | |||||
keywords = | |||||
nd2 | |||||
nikon | |||||
microscopy | |||||
NIS Elements | |||||
author = Ruben Verweij, Lorenzo Zolfanelli | |||||
author_email = dev@zolfa.nl | |||||
url = https://projects.lilik.it/zolfa/zolfa-nd2reader | |||||
[options] | |||||
packages = find_namespace: | |||||
package_dir = | |||||
= src | |||||
python_requires = >=3.6 | |||||
install_requires = | |||||
numpy>=1.14 | |||||
six>=1.4 | |||||
xmltodict>=0.9.2 | |||||
PIMS>=0.5.0 | |||||
setup_requires = | |||||
setuptools_scm | |||||
[options.packages.find] | |||||
where = src | |||||
include = zolfa.* | |||||
[bdist_wheel] | [bdist_wheel] | ||||
universal=1 | universal=1 |
@ -1,31 +0,0 @@ | |||||
from setuptools import setup | |||||
#from nd2reader import __version__ as VERSION | |||||
if __name__ == '__main__': | |||||
setup( | |||||
name='nd2reader', | |||||
packages=['nd2reader'], | |||||
install_requires=[ | |||||
'numpy>=1.14', | |||||
'six>=1.4', | |||||
'xmltodict>=0.9.2', | |||||
'PIMS>=0.5.0' | |||||
], | |||||
python_requires=">=3.6", | |||||
version="3.2.3-zolfa-dev0", | |||||
description='A tool for reading ND2 files produced by NIS Elements', | |||||
author='Ruben Verweij', | |||||
author_email='ruben@lighthacking.nl', | |||||
url='https://github.com/rbnvrw/nd2reader', | |||||
download_url='https://github.com/rbnvrw/nd2reader/tarball/%s' % "3.2.3-zolfa-dev0", | |||||
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', | |||||
] | |||||
) |
@ -0,0 +1,4 @@ | |||||
# file generated by setuptools_scm | |||||
# don't change, don't track in version control | |||||
__version__ = version = '2.0.2.dev268+g026928a.d20230117' | |||||
__version_tuple__ = version_tuple = (2, 0, 2, 'dev268', 'g026928a.d20230117') |