-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
93 lines (84 loc) · 1.79 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
[metadata]
name = h5grove
version = attr: h5grove.version
author = European Synchrotron Radiation Facility
author_email = h5web@esrf.fr
description = Core utilities to serve HDF5 file contents
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
url = https://github.com/silx-kit/h5grove
project_urls =
Bug Tracker = https://github.com/silx-kit/h5grove/-/issues
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
[options]
packages = find:
python_requires = >=3.8
install_requires =
numpy
orjson
h5py >= 3
tifffile
typing-extensions
[options.extras_require]
fastapi =
fastapi
pydantic > 2
pydantic-settings
uvicorn
flask =
Flask
Flask-Compress
Flask-Cors
tornado =
tornado
dev =
black
bump2version
check-manifest
eval_type_backport
flake8
h5grove[fastapi]
h5grove[flask]
h5grove[tornado]
invoke
mypy
myst-parser
# Needed for fastapi tests. Could be removed by setting fastapi[all] as dep in the future.
httpx >= 0.23
pytest
pytest-benchmark
pytest-cov
pytest-tornado
sphinx
sphinx-argparse
sphinx-autobuild
h5grove[tornado]
types-contextvars
types-dataclasses
types-orjson
types-setuptools
# E501 (line too long) ignored for now
# E203 and W503 incompatible with black formatting (https://black.readthedocs.io/en/stable/compatible_configs.html#flake8)
[flake8]
ignore = E501, E203, W503
max-line-length = 88
per-file-ignores =
# imported but unused
__init__.py: F401
[mypy]
python_version = 3.8
[mypy-h5py.*]
ignore_missing_imports = True
[mypy-hdf5plugin.*]
ignore_missing_imports = True
# Numpy types are only available on >=1.20
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-tifffile.*]
ignore_missing_imports = True
[mypy-uvicorn.*]
ignore_missing_imports = True