forked from openapi-generators/openapi-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
144 lines (131 loc) · 3.54 KB
/
pyproject.toml
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
[tool.poetry]
name = "openapi-python-client"
version = "0.11.1"
description = "Generate modern Python clients from OpenAPI"
repository = "https://github.com/triaxtec/openapi-python-client"
license = "MIT"
keywords=["OpenAPI", "Client", "Generator"]
authors = ["Dylan Anthony <[email protected]>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"Typing :: Typed",
]
readme = "README.md"
packages = [
{include = "openapi_python_client"},
]
include = ["CHANGELOG.md", "openapi_python_client/py.typed"]
[tool.poetry.dependencies]
python = "^3.7"
jinja2 = "^3.0.0"
typer = "^0.4"
colorama = {version = "^0.4.3", markers = "sys_platform == 'win32'"}
shellingham = "^1.3.2"
black = "*"
isort = "^5.0.5"
importlib_metadata = {version = ">2,<5", python = "<3.8"}
pydantic = "^1.6.1"
attrs = ">=21.3.0"
python-dateutil = "^2.8.1"
httpx = ">=0.15.4,<0.23.0"
autoflake = "^1.4"
typing-extensions = { version = "*", python = "<3.8" }
PyYAML = "^6.0"
[tool.poetry.scripts]
openapi-python-client = "openapi_python_client.cli:app"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-mock = "*"
mypy = "*"
taskipy = "*"
safety = "*"
pytest-cov = "*"
python-multipart = "*"
types-PyYAML = "^6.0.3"
types-certifi = "^2020.0.0"
types-python-dateutil = "^2.0.0"
pylint = "^2.9.6"
[tool.taskipy.tasks]
check = """
isort .\
&& black .\
&& poetry export -f requirements.txt | poetry run safety check --bare --stdin\
&& mypy openapi_python_client\
&& pylint openapi_python_client\
&& TASKIPY=true pytest --cov openapi_python_client tests --cov-report=term-missing --basetemp=tests/tmp\
&& rm -r tests/tmp\
"""
regen = """
task regen_e2e\
&& task regen_integration\
"""
e2e = "pytest openapi_python_client end_to_end_tests/test_end_to_end.py"
re = """
task regen\
&& task e2e\
"""
regen_e2e = "python -m end_to_end_tests.regen_golden_record"
regen_integration = """
openapi-python-client update --url https://raw.githubusercontent.com/openapi-generators/openapi-test-server/main/openapi.json --config integration-tests-config.yaml\
&& mypy integration-tests --strict
"""
[tool.black]
line-length = 120
target_version = ['py37', 'py38', 'py39']
exclude = '''
(
/(
| \.git
| \.venv
| \.mypy_cache
| openapi_python_client/templates
| tests/test_templates
| end_to_end_tests/test_custom_templates
| end_to_end_tests/golden-record-custom
)/
)
'''
[tool.isort]
line_length = 120
profile = "black"
skip = [".venv", "tests/test_templates", "integration-tests"]
[tool.coverage.run]
omit = ["openapi_python_client/templates/*"]
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = [
# DRY < MOIST
"duplicate-code",
# Sometimes necessary to prevent cycles
"import-outside-toplevel",
# Modules are mostly used for organization here, there is no lib API
"missing-module-docstring",
# Organization is important, even when just separating classes
"too-few-public-methods",
# Disable any type-checking, that's what mypy is for
"no-member",
"no-name-in-module",
"import-error",
# False positives
"cyclic-import",
]
[tool.mypy]
plugins = ["pydantic.mypy"]
disallow_any_generics = true
disallow_untyped_defs = true
warn_redundant_casts = true
strict_equality = true
[[tool.mypy.overrides]]
module = [
"importlib_metadata",
"typer",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
junit_family = "xunit2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"