Skip to content

Commit 14411d4

Browse files
committed
chore: add back pyproject.toml for client-config-builder
1 parent 662bb79 commit 14411d4

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
[build-system]
2+
requires = ["poetry-core"]
3+
build-backend = "poetry.core.masonry.api"
4+
5+
[tool.poetry]
6+
name = "polywrap-client-config-builder"
7+
version = "0.1.0"
8+
description = ""
9+
authors = ["Media <media@polywrap.io>", "Cesar <cesar@polywrap.io>", "Niraj <niraj@polywrap.io>"]
10+
readme = "README.md"
11+
12+
[tool.poetry.dependencies]
13+
python = "^3.10"
14+
polywrap-core = { path = "../polywrap-core", develop = true }
15+
polywrap-uri-resolvers = { path = "../polywrap-uri-resolvers", develop = true }
16+
17+
[tool.poetry.dev-dependencies]
18+
pytest = "^7.1.2"
19+
pytest-asyncio = "^0.19.0"
20+
pylint = "^2.15.4"
21+
black = "^22.10.0"
22+
bandit = { version = "^1.7.4", extras = ["toml"]}
23+
tox = "^3.26.0"
24+
tox-poetry = "^0.4.1"
25+
isort = "^5.10.1"
26+
pyright = "^1.1.275"
27+
pydocstyle = "^6.1.1"
28+
29+
[tool.bandit]
30+
exclude_dirs = ["tests"]
31+
32+
[tool.black]
33+
target-version = ["py310"]
34+
35+
[tool.pyright]
36+
# default
37+
38+
[tool.pytest.ini_options]
39+
asyncio_mode = "auto"
40+
testpaths = [
41+
"tests"
42+
]
43+
44+
[tool.pylint]
45+
disable = [
46+
47+
]
48+
ignore = [
49+
"tests/"
50+
]
51+
52+
[tool.isort]
53+
profile = "black"
54+
multi_line_output = 3
55+
56+
[tool.pydocstyle]
57+
# default

0 commit comments

Comments
 (0)