-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
83 lines (77 loc) · 1.91 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
[metadata]
name = pado
url = https://github.com/Bayer-Group/pado
download_url = https://github.com/Bayer-Group/pado
author = Santiago Villalba, Andreas Poehlmann
author_email = [email protected], [email protected]
license = BSD
license_file = LICENSE
description = cloud-native dataset library for accessing histopathological datasets
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
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.7
install_requires =
dynaconf
fsspec
geojson-pydantic
itsdangerous
numpy>=1.21
orjson
pandas
platformdirs
pyarrow
pydantic
shapely>=2
tifffile>=2021.6.6
tiffslide>=1.7.0
toml
tqdm
typing_extensions>=4.0
build_requires =
setuptools_scm
[options.packages.find]
exclude = "*/tests/*"
[options.package_data]
pado = py.typed
[options.extras_require]
cli =
rich>=12
typer
create =
opencv-python-headless
dev =
aiohttp
requests
mypy
pytest>=6
pytest-cov
pre_commit
docs =
sphinx
sphinxemoji
sphinx-autodoc-typehints
sphinx_rtd_theme
[options.entry_points]
console_scripts =
pado = pado.__main__:cli
pado-transporter = pado.transporter:cli_main