forked from silx-kit/h5grove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
85 lines (76 loc) · 1.59 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
[metadata]
name = h5grove
version = attr: h5grove.version
author = European Synchrotron Radiation Facility
author_email = [email protected]
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.6
install_requires =
numpy
orjson
h5py
tifffile
[options.extras_require]
fastapi =
fastapi
uvicorn
flask =
Flask
Flask-Compress
Flask-Cors
tornado =
tornado
dev =
black
bump2version
check-manifest
flake8
h5grove[fastapi]
h5grove[flask]
invoke
mypy
myst-parser
pytest
pytest-benchmark
pytest-cov
pytest-tornado
sphinx
sphinx-argparse
h5grove[tornado]
types-contextvars
types-dataclasses
types-orjson
types-pkg-resources
# 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.6
[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