-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.35 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
53
54
55
56
57
58
59
[tool.poetry]
name = "vk-to-tgm"
version = "1.2.1"
description = "An application that forwards wall posts and playlists from VK community to Telegram channel"
license = "GPL-3.0-or-later"
authors = ["Ilia Boyazitov"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.75.2"
vkbottle = "^4.2.2"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
ffmpeg-python = "^0.2.0"
gunicorn = "^20.1.0"
celery = "^5.2.6"
SQLAlchemy = "^1.4.35"
Telethon = "^1.38.0"
cryptg = "^0.2.post4"
Pillow = "^9.1.0"
aiohttp = "^3.8.1"
hachoir = "^3.1.2"
eyed3 = "^0.9.6"
aiofiles = "^0.8.0"
vkaudiotoken = {git = "https://github.com/Bizordec/vkaudiotoken-python.git"}
[tool.poetry.dev-dependencies]
black = "^22.3.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
flake8-bugbear = "^22.4.25"
flake8-comprehensions = "^3.8.0"
flake8-tidy-imports = "^4.6.0"
sqlalchemy2-stubs = "^0.0.2-alpha.22"
bandit = "^1.7.4"
Babel = "^2.10.1"
[tool.poetry.group.dev.dependencies]
commitizen = "^3.6.0"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3
include_trailing_comma = true
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "semver"
version_provider = "poetry"
update_changelog_on_bump = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"