Skip to content

Commit

Permalink
added optional dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Arfey committed Apr 2, 2024
1 parent 572b9e0 commit 1c414c7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ aiohttp-jinja2 = "^1.4.2"
aiopg = "^1.3.0"
SQLAlchemy = "^1.4.20"
sqlalchemy-stubs = "^0.4"
aiomysql = "^0.0.21"
motor = "^2.4.0"
aiomysql = {version = "^0.0.21", optional = true}
motor = {version = "^2.4.0", optional = true}
python-dateutil = "^2.8.1"

[tool.poetry.group.dev.dependencies]
Expand All @@ -36,6 +36,11 @@ cryptography = "^42.0.5"
umongo = {version = "^3.1.0", extras = ["motor"]}
aiofiles = "^23.2.1"

[tool.poetry.extras]
motor = ["motor"]
mysql = ["aiomysql"]


[tool.poetry-dynamic-versioning]
enable = true

Expand Down

0 comments on commit 1c414c7

Please sign in to comment.