-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.cfg
84 lines (73 loc) · 2.02 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
# Unless explicitly stated otherwise all files in this repository are licensed
# under the 3-clause BSD style license (see LICENSE).
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2019 Datadog, Inc.
[metadata]
name = apigentools
description = Tooling for generation of API clients using openapi-generator
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
openapi
api
client
openapi-generator
author = Datadog
author_email = [email protected]
url = https://github.com/DataDog/apigentools
license = BSD 3-clause
platforms = any
classifiers=
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
project_urls =
Bug Tracker = https://github.com/DataDog/apigentools/issues
Documentation = https://apigentools.readthedocs.io/en/latest/
Source Code = https://github.com/DataDog/apigentools
[options]
packages = find:
include_package_data = True
python_requires = >=3.7
install_requires =
chevron>=0.14.0
click>=8.0.0
jsonpath-ng>=1.5.1
PyYAML>=5.4.1,<7.0.0
packaging>=21.3
pydantic>=1.9.0,<2
setup_requires =
setuptools>=30.3.0
setuptools_scm<8
[options.entry_points]
console_scripts =
apigentools = apigentools.cli:cli
container-apigentools = apigentools.cli:cli
[options.extras_require]
tests =
black>=20.8b1
flexmock>=0.10.4,<0.11
pytest>=5.2.4,<8
pytest-cov
pytest-black
pytest-console-scripts
[pytest]
script_launch_mode = subprocess
[options.packages.find]
exclude = tests
[tool:pytest]
addopts = --black --cov=apigentools --cov-config .coveragerc --cov-report=term-missing
[flake8]
max-line-length = 120
extend-ignore = E203
[tool:black]
line-length = 120
[tool:isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 120