forked from python-jsonschema/check-jsonschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
69 lines (60 loc) · 1.56 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
[metadata]
name = check-jsonschema
version = 0.27.3
description = A jsonschema CLI and pre-commit hook
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/python-jsonschema/check-jsonschema
author = Stephen Rosen
author_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
[options]
python_requires = >=3.8
# reference for dependency spec: https://www.python.org/dev/peps/pep-0508/
install_requires =
importlib-resources>=1.4.0;python_version<"3.9"
ruamel.yaml==0.18.5
jsonschema>=4.18.0,<5.0
regress>=0.4.0
requests<3.0
click>=8,<9
package_dir=
=src
packages = find:
include_package_data = true
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
check-jsonschema = check_jsonschema:main
[options.extras_require]
dev =
pytest<8
coverage<8
pytest-xdist<4
responses==0.24.1
docs =
sphinx<8
sphinx-issues<4
furo==2023.9.10
[isort]
profile = black
[flake8] # black-compatible
exclude = .git,.tox,__pycache__,.eggs,dist,.venv*,build
max-line-length = 90
ignore = W503,W504,E203,
[mypy]
# strict = true # TODO: enable
disallow_untyped_defs = true
ignore_missing_imports = true
warn_unreachable = true
warn_no_return = true
[tool:pytest]
filterwarnings =
error
# dateutil has a Python 3.12 compatibility issue.
ignore:datetime\.datetime\.utcfromtimestamp\(\) is deprecated:DeprecationWarning