2021-06-15 19:09:21 +02:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "unwind"
|
2023-11-29 18:01:01 +01:00
|
|
|
version = "0"
|
2021-06-15 19:09:21 +02:00
|
|
|
description = ""
|
|
|
|
|
authors = ["ducklet <ducklet@noreply.code.dumpr.org>"]
|
|
|
|
|
license = "LOL"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-11-26 17:00:31 +01:00
|
|
|
python = "^3.12"
|
2021-06-15 19:09:21 +02:00
|
|
|
beautifulsoup4 = "^4.9.3"
|
|
|
|
|
html5lib = "^1.1"
|
2023-07-22 18:37:54 +02:00
|
|
|
starlette = "^0.30"
|
2021-06-15 19:09:21 +02:00
|
|
|
ulid-py = "^1.1.0"
|
2023-07-22 18:37:54 +02:00
|
|
|
uvicorn = "^0.23"
|
|
|
|
|
httpx = "^0.24"
|
2023-11-27 23:24:35 +01:00
|
|
|
sqlalchemy = {version = "^2.0", extras = ["aiosqlite"]}
|
2022-10-23 12:24:51 +02:00
|
|
|
|
2023-11-29 18:01:01 +01:00
|
|
|
[tool.poetry.group.build.dependencies]
|
|
|
|
|
# When we run poetry export, typing-extensions is a transient dependency via
|
|
|
|
|
# sqlalchemy, but the hash won't be included in the requirements.txt.
|
|
|
|
|
# By making it a direct dependency we can fix this issue, otherwise this could
|
|
|
|
|
# be removed.
|
|
|
|
|
typing-extensions = "*"
|
|
|
|
|
|
2022-10-23 12:24:51 +02:00
|
|
|
[tool.poetry.group.dev]
|
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
|
pytest = "*"
|
2021-12-07 21:16:48 +01:00
|
|
|
pyright = "*"
|
2022-10-23 12:24:51 +02:00
|
|
|
pytest-asyncio = "*"
|
2023-03-19 00:06:14 +01:00
|
|
|
pytest-cov = "*"
|
2023-11-26 15:10:16 +01:00
|
|
|
ruff = "*"
|
2023-11-26 16:46:38 +01:00
|
|
|
honcho = "*"
|
2021-06-15 19:09:21 +02:00
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2021-11-02 14:25:50 +01:00
|
|
|
|
|
|
|
|
[tool.pyright]
|
2023-11-26 17:00:31 +01:00
|
|
|
pythonVersion = "3.12"
|
2023-02-03 22:10:11 +01:00
|
|
|
|
2023-11-26 15:10:16 +01:00
|
|
|
[tool.ruff]
|
2023-11-26 17:00:31 +01:00
|
|
|
target-version = "py312"
|
2023-02-03 22:10:11 +01:00
|
|
|
ignore-init-module-imports = true
|
2023-11-26 15:10:16 +01:00
|
|
|
select = ["I", "F401", "F601", "F602", "F841"]
|