Skip to content

Commit 4bb2d6c

Browse files
committed
wip:workspase_renaming
1 parent f3df141 commit 4bb2d6c

5 files changed

Lines changed: 63 additions & 3 deletions

File tree

packages/polywrap-ccb/polywrap_ccb/ccb.py renamed to packages/polywrap-client-config-builder/polywrap_client_config_builder/ccb.py

File renamed without changes.

packages/polywrap-ccb/polywrap_ccb/client_config.py renamed to packages/polywrap-client-config-builder/polywrap_client_config_builder/client_config.py

File renamed without changes.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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+
wasmtime = "^1.0.1"
15+
polywrap-core = { path = "../polywrap-core", develop = true }
16+
polywrap-wasm = { path = "../polywrap-wasm", develop = true }
17+
polywrap-result = { path = "../polywrap-result", develop = true }
18+
19+
[tool.poetry.dev-dependencies]
20+
polywrap-client = { path = "../polywrap-client", develop = true }
21+
pytest = "^7.1.2"
22+
pytest-asyncio = "^0.19.0"
23+
pylint = "^2.15.4"
24+
black = "^22.10.0"
25+
bandit = { version = "^1.7.4", extras = ["toml"]}
26+
tox = "^3.26.0"
27+
tox-poetry = "^0.4.1"
28+
isort = "^5.10.1"
29+
pyright = "^1.1.275"
30+
pydocstyle = "^6.1.1"
31+
32+
[tool.bandit]
33+
exclude_dirs = ["tests"]
34+
35+
[tool.black]
36+
target-version = ["py310"]
37+
38+
[tool.pyright]
39+
# default
40+
41+
[tool.pytest.ini_options]
42+
asyncio_mode = "auto"
43+
testpaths = [
44+
"tests"
45+
]
46+
47+
[tool.pylint]
48+
disable = [
49+
"too-many-return-statements",
50+
]
51+
ignore = [
52+
"tests/"
53+
]
54+
55+
[tool.isort]
56+
profile = "black"
57+
multi_line_output = 3
58+
59+
[tool.pydocstyle]
60+
# default

packages/polywrap-ccb/tests/test_clientconfig.py renamed to packages/polywrap-client-config-builder/tests/test_clientconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pytest
22
from polywrap_core import Uri, Env
3-
from polywrap_ccb import ClientConfig, ClientConfigBuilder
3+
from polywrap_client_config_builder import ClientConfig, ClientConfigBuilder
44
from dataclasses import asdict
55

66
def test_client_config_structure_starts_empty():

python-monorepo.code-workspace

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"path": "packages/polywrap-plugin"
3838
},
3939
{
40-
"name": "polywrap-client-cbb",
41-
"path": "packages/polywrap-ccb"
40+
"name": "polywrap-client-config-builder",
41+
"path": "packages/polywrap-client-config-builder"
4242
}
4343
],
4444
"settings": {

0 commit comments

Comments
 (0)