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]
|
2023-02-02 00:00:24 +01:00
|
|
|
python = "^3.11"
|
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-02-02 00:00:24 +01:00
|
|
|
databases = {extras = ["sqlite"], version = "^0.7.0"}
|
2023-07-22 18:37:54 +02:00
|
|
|
uvicorn = "^0.23"
|
|
|
|
|
httpx = "^0.24"
|
2023-03-18 22:11:51 +01:00
|
|
|
sqlalchemy = {version = "^1.4", extras = ["aiosqlite"]}
|
2022-10-23 12:24:51 +02:00
|
|
|
|
|
|
|
|
[tool.poetry.group.dev]
|
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2023-03-17 23:34:47 +01:00
|
|
|
autoflake = "*"
|
2022-10-23 12:24:51 +02:00
|
|
|
pytest = "*"
|
2021-12-07 21:16:48 +01:00
|
|
|
pyright = "*"
|
|
|
|
|
black = "*"
|
|
|
|
|
isort = "*"
|
2022-10-23 12:24:51 +02:00
|
|
|
pytest-asyncio = "*"
|
2023-03-19 00:06:14 +01:00
|
|
|
pytest-cov = "*"
|
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-02-02 00:00:24 +01:00
|
|
|
pythonVersion = "3.11"
|
2023-02-03 22:10:11 +01:00
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
|
profile = "black"
|
|
|
|
|
|
|
|
|
|
[tool.autoflake]
|
|
|
|
|
remove-duplicate-keys = true
|
|
|
|
|
remove-unused-variables = true
|
|
|
|
|
remove-all-unused-imports = true
|
|
|
|
|
ignore-init-module-imports = true
|
|
|
|
|
ignore-pass-after-docstring = true
|