2021-06-15 19:09:21 +02:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "unwind"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = ""
|
|
|
|
|
authors = ["ducklet <ducklet@noreply.code.dumpr.org>"]
|
|
|
|
|
license = "LOL"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-11-02 14:16:00 +01:00
|
|
|
python = "^3.10"
|
2021-06-15 19:09:21 +02:00
|
|
|
requests = "^2.25.1"
|
|
|
|
|
beautifulsoup4 = "^4.9.3"
|
|
|
|
|
html5lib = "^1.1"
|
2021-12-07 21:16:48 +01:00
|
|
|
starlette = "^0.17.0"
|
2021-06-15 19:09:21 +02:00
|
|
|
ulid-py = "^1.1.0"
|
2022-10-23 12:24:51 +02:00
|
|
|
databases = {extras = ["sqlite"], version = "^0.6.1"}
|
2021-06-15 19:09:21 +02:00
|
|
|
toml = "^0.10.2"
|
2022-10-23 12:24:51 +02:00
|
|
|
uvicorn = "^0.19.0"
|
2021-06-15 19:09:21 +02:00
|
|
|
|
2022-10-23 12:24:51 +02:00
|
|
|
[tool.poetry.group.fixes.dependencies]
|
|
|
|
|
# `databases` is having issues with new versions of SQLAlchemy 1.4,
|
|
|
|
|
# and `greenlet` is also always a pain.
|
|
|
|
|
SQLAlchemy = "1.4.25"
|
|
|
|
|
greenlet = "1.1.2"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev]
|
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
|
pytest = "*"
|
2021-12-07 21:16:48 +01:00
|
|
|
pyright = "*"
|
|
|
|
|
black = "*"
|
|
|
|
|
isort = "*"
|
2022-10-23 12:24:51 +02:00
|
|
|
pytest-asyncio = "*"
|
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]
|
|
|
|
|
pythonVersion = "3.10"
|