-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
107 lines (96 loc) · 2.52 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
[tool.poetry]
name="roboswag"
version = "0.4.0"
description = "Test framework for auto-generating libraries from OpenAPI specification file."
license = "Apache-2.0"
authors = ["Mateusz Nojek <[email protected]>", "Bartlomiej Hirsz <[email protected]>"]
readme = "./README.md"
homepage = "https://pypi.org/project/roboswag"
repository = "https://github.com/MarketSquare/roboswag"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Tool",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
"Intended Audience :: Developers",
]
keywords = ["testing", "api", "testautomation", "openapi", "robotframework"]
packages = [{include = "roboswag"}]
include = ["*.jinja"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0.0"
robotframework = ">=4.1"
requests = "^2.27.1"
urllib3 = "^1.26.9"
black = "^22.3.0"
Jinja2 = "^3.1.2"
prance = ">=23.6.21.0"
PyYAML = "^6.0"
jsonschema = "^4.5.1"
openapi-spec-validator = ">=0.6.0"
click = ">=8.1.0"
rich_click = "^1.4"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
invoke = "^1.7.1"
mypy = "^0.960"
pylint = "^2.13.9"
types-PyYAML = "^6.0.7"
types-requests = "^2.27.29"
sphinx = ">=5.1"
furo = ">=2022.6.21"
sphinx_design = "^0.2.0"
coverage = "^6.4.3"
pytest = "^7.1.2"
fastapi = "^0.79.1"
uvicorn = "^0.18.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
roboswag = "roboswag:cli"
[tool.mypy]
show_error_codes = true
[[tool.mypy.overrides]]
module = [
"prance.*",
"robot.*",
"openapi_core.*",
"invoke",
"uvicorn",
]
ignore_missing_imports = true
[tool.black]
line-length = 120
target-version = ["py38"]
[tool.isort]
src_paths = [
"roboswag",
"tests"
]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
[tool.pylint.'MESSAGES CONTROL']
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
]
[tool.pylint.'FORMAT CHECKER']
max-line-length=120
[tool.pylint.'SIMILARITIES CHECKER']
ignore-imports="yes"