-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
75 lines (67 loc) · 1.84 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
[metadata]
name = wsinfer_zoo
url = https://github.com/SBU-BMI/wsinfer-zoo
author = Jakub Kaczmarzyk
author_email = [email protected]
description = A client for model zoo for WSInfer-compatible models.
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License 2.0
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Healthcare Industry
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
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 :: Artificial Intelligence
Topic :: Scientific/Engineering :: Image Recognition
Topic :: Scientific/Engineering :: Medical Science Apps.
[options]
packages = find:
python_requires = >= 3.7
install_requires =
click>=8.0,<9,!=8.1.4,!=8.1.5
huggingface_hub
jsonschema
tabulate
[options.extras_require]
dev =
black
flake8
isort
mypy
pytest
[options.entry_points]
console_scripts =
wsinfer-zoo = wsinfer_zoo.cli:cli
[options.package_data]
* =
py.typed
schemas/*.json
[flake8]
max-line-length = 88
extend-ignore = E203
exclude = wsinfer_zoo/_version.py
[mypy]
[mypy-huggingface_hub]
ignore_missing_imports = True
[versioneer]
VCS = git
style = pep440
versionfile_source = wsinfer_zoo/_version.py
versionfile_build = wsinfer_zoo/_version.py
tag_prefix = v
parentdir_prefix = wsinfer_zoo-
[isort]
profile = black
force_single_line = true