Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ To install all available features, including:
- SQLAlchemy (Alchemical)
- Both serialization engines
- OpenAPI support
- HTTP client helpers

```bash
pip install "dyne[full]"
Expand Down
2 changes: 1 addition & 1 deletion docs/tour.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Integrate a native GraphQL interface and the GraphiQL IDE:
3. Full Suite
"""""""""""""

For a comprehensive development environment including all serialization engines, GraphQL support, Flask adapters, and testing utilities:
To install all available features, including: Both GraphQL engines, SQLAlchemy (Alchemical), Both serialization engines and OpenAPI support.

.. code-block:: bash

Expand Down
11 changes: 5 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ dependencies = [
"jinja2>=3.1.3",
"pyyaml>=6.0.1",
# HTTP utilities
"requests>=2.31.0",
"requests-toolbelt>=1.0.0",
"rfc3986>=2.0.0",
"python-multipart>=0.0.9",
# Static files & security
Expand Down Expand Up @@ -72,14 +74,11 @@ marshmallow = ["marshmallow>=3.21.1"]

openapi = ["apispec>=6.9.0"]

# HTTP client helpers
http = ["requests>=2.31.0", "requests-toolbelt>=1.0.0"]

# OpenAPI with Pydantic
openapi_pydantic = ["dyne[pydantic,openapi,http]"]
openapi_pydantic = ["dyne[pydantic,openapi]"]

# OpenAPI with Marshmallow
openapi_marshmallow = ["dyne[marshmallow,openapi,http]"]
openapi_marshmallow = ["dyne[marshmallow,openapi]"]

# GraphQL with Strawberry
graphql_strawberry = ["dyne[graphql,strawberry]"]
Expand All @@ -91,7 +90,7 @@ graphql_graphene = ["dyne[graphql,graphene]"]
sqlalchemy = ["alchemical>=1.0.2", "aiosqlite>=0.22.1", "greenlet>=3.3.0"]

full = [
"dyne[graphql,strawberry,graphene,pydantic,marshmallow,openapi,http, sqlalchemy]",
"dyne[graphql,strawberry,graphene,pydantic,marshmallow,openapi,sqlalchemy]",
]


Expand Down