Skip to content

Commit 79acc8a

Browse files
authored
Update pyproject.toml
1 parent 4fb0880 commit 79acc8a

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,28 @@ license = "NoLicense"
77
readme = "README.md"
88
repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
99
keywords = ["OpenAPI", "OpenAPI-Generator", "onelens-backend"]
10-
include = ["onelens_backend_client/py.typed"]
10+
include = ["onelens_backend_client/py.typed", "onelens_backend_client_v2/py.typed"]
11+
packages = [
12+
{ include = "onelens_backend_client" },
13+
{ include = "onelens_backend_client_v2", from = "." }
14+
]
1115

1216
[tool.poetry.dependencies]
1317
python = "^3.7"
1418

1519
urllib3 = ">= 1.25.3"
1620
python-dateutil = ">=2.8.2"
17-
pydantic = ">=2"
21+
pydantic = {extras = ["email"], version = ">=2"}
1822
typing-extensions = ">=4.7.1"
1923

2024
[tool.poetry.dev-dependencies]
25+
datamodel-code-generator = {extras = ["http"], version = "^0.25.8"}
2126
pytest = ">=7.2.1"
2227
tox = ">=3.9.0"
2328
flake8 = ">=4.0.0"
2429
types-python-dateutil = ">=2.8.19.14"
2530
mypy = "1.4.1"
26-
31+
ruff = "^0.5.5"
2732

2833
[build-system]
2934
requires = ["setuptools"]
@@ -35,6 +40,7 @@ extension-pkg-whitelist = "pydantic"
3540
[tool.mypy]
3641
files = [
3742
"onelens_backend_client",
43+
"onelens_backend_client_v2",
3844
#"test", # auto-generated tests
3945
"tests", # hand-written tests
4046
]

0 commit comments

Comments
 (0)