-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.15 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "vthell"
version = "3.0.0"
description = "An API endpoint to manage your VTuber recording"
authors = ["noaione <noaione0809@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = "^3.8.1"
python-dotenv = "^0.19.2"
pendulum = "^2.1.2"
orjson = "^3.6.5"
tortoise-orm = "^0.17.8"
aiosqlite = "^0.17.0"
sanic = "^21.9.3"
coloredlogs = "^15.0.1"
Sanic-Cors = "^1.0.1"
aiofiles = "^0.8.0"
watchgod = "^0.7"
discord-webhook = "^0.14.0"
requests = "^2.26.0"
uvicorn = {extras = ["standard"], version = "^0.16.0"}
websockets = "^10.1"
yt-dlp = "^2021.12.25"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
isort = "^5.10.1"
black = "^21.12b0"
safety = "^1.10.3"
aerich = "^0.6.0"
[tool.aerich]
tortoise_orm = "internals.db.config.TORTOISE_ORM"
location = "./migrations"
src_folder = "./."
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ["py37", "py38", "py39"]
[tool.isort]
profile = "black"
multi_line_output = 3
extend_skip = ["env/**", "venv/**", ".pytest_cache/**", ".venv/**", "__pycache__/**"]
line_length = 120
skip_gitignore = true