-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
53 lines (49 loc) · 1.3 KB
/
setup.cfg
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[metadata]
name = nis2pyr
version = 0.6.2
description = Utility for converting Nikon ND2 files to tiled pyramidal OME TIFF files.
long_description = file: README.md
long_description_content_type = text/markdown
author = Frank Vernaillen
author_email = [email protected]
license = BSD-3-Clause
license_file = LICENSE
url = https://github.com/vibbits/nis2pyr
project_urls =
Bug Tracker = https://github.com/vibbits/nis2pyr/issues
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
Natural Language :: English
[options]
packages = find:
package_dir =
=src
python_requires = >=3.7, <3.10
install_requires =
importlib-metadata == 4.8.1; python_version < "3.8"
tifffile == 2021.8.30
imagecodecs == 2021.8.26
opencv-python == 4.5.3.56
ome_types == 0.2.9
nd2 == 0.1.4
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
nis2pyr = nis2pyr.nis2pyr:main
[options.extras_require]
dev =
coverage
flake8
mypy
pyinstaller
pytest
pytest-cov
pytest-mock