-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
67 lines (58 loc) · 1.21 KB
/
setup.cfg
File metadata and controls
67 lines (58 loc) · 1.21 KB
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
[metadata]
name = oas
description = Yet another OpenAPI 3 library
long_description = file: README.rst
url = https://github.com/grktsh/python-oas
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
packages = find:
package_dir =
= src
install_requires =
jsonref ~= 0.2
jsonschema >= 2.6, < 4
six ~= 1.11
functools32 ~= 3.2 ; python_version == '2.7'
[options.extras_require]
format =
pyrfc3339 ~= 1.1
rfc3986 ~= 1.1
test =
pytest
pytest-cov
pytest-mock
pytest-xdist
pyyaml ~= 5.1
[options.packages.find]
where = src
[bdist_wheel]
universal = 1
[coverage:run]
branch = True
parallel = True
source =
oas
omit =
*/oas/__version__.py
[coverage:paths]
source =
src
*/site-packages
[coverage:report]
show_missing = True
[tool:pytest]
testpaths = tests
[flake8]
ignore =
E203
W503