-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.cfg
94 lines (79 loc) · 2.17 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[metadata]
name = paquo
url = https://github.com/bayer-science-for-a-better-life/paquo
download_url = https://github.com/bayer-science-for-a-better-life/paquo
license = GPLv3
license_file = LICENSE
description = library for interacting with QuPath
long_description = file: README.md
long_description_content_type = text/markdown
author = Santiago Villalba, Andreas Poehlmann
author_email = [email protected], [email protected]
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Java
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Visualization
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Utilities
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
[options]
packages = find:
python_requires = >=3.8
install_requires =
dynaconf>=3,!=3.1.0
JPype1>=1.0.1
shapely
packaging
[options.packages.find]
exclude =
*.tests
[options.package_data]
paquo =
.paquo.defaults.toml
py.typed
[options.extras_require]
ome =
ome-types
dev =
pytest>=6
pytest-cov
mypy
typing_extensions
docs =
sphinx
sphinxemoji
sphinx-rtd-theme
sphinx-autodoc-typehints
[options.entry_points]
console_scripts =
paquo = paquo.__main__:main
[mypy]
python_version = 3.8
plugins = pydantic.mypy
warn_return_any = True
warn_unused_configs = True
exclude = ^examples|^extras|^docs|tests.*
[mypy-jpype.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-shapely.*]
ignore_missing_imports = True
[mypy-dynaconf.*]
ignore_missing_imports = True
[mypy-ome_types.*]
ignore_missing_imports = True