Skip to content

Commit

Permalink
fix pyproject.toml to add models folder (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
hotaru355 authored Aug 16, 2023
1 parent 91f5e53 commit 2241518
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions cuckoo/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,11 +356,6 @@ class Query(
TMODEL_BASE,
TNUM_PROPS,
],
Generic[
TMODEL,
TMODEL_BASE,
TNUM_PROPS,
],
):
"""
Query builder for retrieving one, many, or an aggregate of models.
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"httpx==0.24.*",
"orjson==3.*",
"httpx>=0.24.0",
"orjson>=3.0.0",
"pydantic>=1.0.0",
"tenacity==8.*",
"tenacity>=8.0.0",
]

[project.urls]
Expand All @@ -37,4 +37,4 @@ codegen = "codegen.graphql_2_python:run_cli"
codegen = ["case-converter>=1.1.0", "graphql-core>=3.2.3"]

[tool.setuptools]
packages = ["cuckoo", "codegen"]
packages = ["cuckoo", "cuckoo.models", "codegen"]

0 comments on commit 2241518

Please sign in to comment.