-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
88 lines (76 loc) · 2.09 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
[tool.poetry]
name="robotframework-poetry-demo"
version = "1.1.0"
description = "A demo project showing how to set up a distributable Robot Framework project."
license = "Apache-2.0"
authors = ["Robin Mackaij <[email protected]>"]
readme = "./docs/README.md"
homepage = "https://github.com/MarketSquare/robotframework-poetry-demo"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Acceptance",
"Framework :: Robot Framework",
"Private :: Not intended to be uploaded to pypi",
]
packages = [
{include = "Flat", from = "flat"},
{include = "Nested", from = "nested"},
{include = "Global", from = "split"},
{include = "Shop", from = "split"},
{include = "UserGuide", from = "split"},
]
include = ["*.resource"]
[[tool.poetry.source]]
name = 'private'
url = 'http://example.com/simple'
[tool.poetry.dependencies]
python = "^3.8"
robotframework = ">=5"
[tool.poetry.dev-dependencies]
robotframework-tidy = "^2.3"
robotframework-robocop = "^2.0.2"
invoke = "^1.7.1"
mypy = "^0.960"
pylint = "^2.13.9"
black = "^22.3.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"@abstract"
]
[tool.mypy]
show_error_codes = true
[[tool.mypy.overrides]]
module = [
"uvicorn",
"invoke",
]
ignore_missing_imports = true
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.isort]
src_paths = [
"src"
]
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 = 88
[tool.pylint.'MESSAGES CONTROL']
disable = ["logging-fstring-interpolation", "missing-class-docstring", "missing-function-docstring"]
extension-pkg-whitelist = "pydantic"
[tool.pylint.'FORMAT CHECKER']
max-line-length=120
[tool.pylint.'SIMILARITIES CHECKER']
ignore-imports="yes"