-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (59 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
69 lines (59 loc) · 1.73 KB
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "polywrap-sys-config-bundle"
version = "0.1.2"
description = "Polywrap System Client Config Bundle"
authors = ["Niraj <niraj@polywrap.io>"]
readme = "README.rst"
packages = [
{ include = "polywrap_sys_config_bundle" },
]
include = ["**/wrap.info", "**/wrap.wasm"]
[tool.poetry.dependencies]
python = "^3.10"
polywrap-core = {path = "../../polywrap-core", develop = true}
polywrap-client-config-builder = {path = "../../polywrap-client-config-builder", develop = true}
polywrap-uri-resolvers = {path = "../../polywrap-uri-resolvers", develop = true}
polywrap-manifest = {path = "../../polywrap-manifest", develop = true}
polywrap-wasm = {path = "../../polywrap-wasm", develop = true}
polywrap-fs-plugin = {path = "../../plugins/polywrap-fs-plugin", develop = true}
polywrap-http-plugin = {path = "../../plugins/polywrap-http-plugin", develop = true}
polywrap-logger-plugin = {path = "../../plugins/polywrap-logger-plugin", develop = true}
[tool.poetry.group.dev.dependencies]
polywrap-client = {path = "../../polywrap-client", develop = true}
pytest = "^7.1.2"
pylint = "^2.15.4"
black = "^22.10.0"
bandit = { version = "^1.7.4", extras = ["toml"]}
tox = "^3.26.0"
tox-poetry = "^0.4.1"
isort = "^5.10.1"
pyright = "^1.1.275"
pydocstyle = "^6.1.1"
[tool.bandit]
exclude_dirs = ["tests"]
skips = ["B310"]
[tool.black]
target-version = ["py310"]
[tool.pyright]
typeCheckingMode = "strict"
reportShadowedImports = false
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[tool.pylint]
disable = [
"invalid-name",
"too-few-public-methods",
]
ignore = [
"tests/"
]
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pydocstyle]
# default