openapi-core/setup.cfg

63 lines
1.6 KiB
INI
Raw Normal View History

2019-09-28 20:52:03 +00:00
[metadata]
name = openapi-core
2021-02-21 19:13:33 +00:00
description = client-side and server-side support for the OpenAPI Specification v3
2019-09-28 20:52:03 +00:00
long_description = file: README.rst
long-description-content-type = text/x-rst; charset=UTF-8
keywords = openapi, swagger, schema
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: OS Independent
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
2021-01-31 13:28:56 +00:00
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
2019-09-28 20:52:03 +00:00
Topic :: Software Development :: Libraries
[options]
include_package_data = True
packages = find:
zip_safe = False
test_suite = tests
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.4.*
setup_requires =
setuptools
install_requires =
2020-04-11 12:45:46 +00:00
isodate
2021-04-28 22:08:52 +00:00
dictpath
2019-09-28 20:52:03 +00:00
openapi-spec-validator
2020-03-05 11:28:21 +00:00
openapi-schema-validator
2019-09-28 20:52:03 +00:00
six
lazy-object-proxy
attrs
2020-02-24 09:48:42 +00:00
werkzeug
2020-02-21 16:33:45 +00:00
parse
more-itertools
2019-09-28 20:52:03 +00:00
backports.functools-lru-cache; python_version<"3.0"
backports.functools-partialmethod; python_version<"3.0"
tests_require =
mock; python_version<"3.0"
pytest
pytest-flake8
pytest-cov
2020-01-28 09:23:02 +00:00
falcon
2019-09-28 20:52:03 +00:00
flask
2020-03-27 08:58:45 +00:00
responses
webob
2019-09-28 20:52:03 +00:00
[options.packages.find]
exclude =
tests
[options.extras_require]
django =
django>=2.2; python_version>="3.0"
2020-02-24 09:48:42 +00:00
flask = flask
2020-03-02 16:05:36 +00:00
requests = requests
2019-09-28 20:52:03 +00:00
[tool:pytest]
2020-01-17 14:36:14 +00:00
addopts = -sv --flake8 --junitxml reports/junit.xml --cov openapi_core --cov-report term-missing --cov-report xml:reports/coverage.xml