-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (61 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
64 lines (61 loc) · 1.6 KB
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
60
61
62
63
64
[tool.poetry]
name = "mudev-backend"
version = "0.0.1"
description = ""
authors = ["MU-Software <musoftware@mudev.cc>"]
homepage = "https://mudev.cc"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.109.0"
pydantic = "^2.6.3"
redis = {version = "^5.0.2", extras = ["hiredis"]}
SQLAlchemy = {extras = ["greenlet"], version = "^2.0.28"}
uvicorn = "^0.27.1"
gunicorn = "^21.2.0"
alembic = {extras = ["tz"], version = "^1.13.1"}
python-dotenv = "^1.0.1"
eventlet = "^0.34.3"
celery = {extras = ["redis", "sqlalchemy", "tblib"], version = "^5.3.6"}
gitpython = "^3.1.42"
aiohttp = "^3.9.3"
yt-dlp = "^2023.12.30"
pillow = "^10.2.0"
mutagen = "^1.47.0"
google-api-python-client = "^2.121.0"
ffmpeg-python = "^0.2.0"
pydantic-settings = "^2.2.1"
passlib = "^1.7.4"
argon2-cffi = "^23.1.0"
psycopg = {extras = ["binary"], version = "^3.1.18"}
typer = "^0.9.0"
python-dateutil = "^2.9.0.post0"
flower = "^2.0.1"
ipython = "^8.22.2"
fabric = "^3.2.2"
toml = "^0.10.2"
email-validator = "^2.1.1"
pyjwt = "^2.8.0"
user-agents = "^2.2.0"
typing-extensions = "^4.10.0"
python-multipart = "^0.0.9"
aiofiles = "^23.2.1"
python-telegram-bot = "^21.0.1"
paramiko = "^3.4.0"
docker = "^7.0.0"
sentry-sdk = {extras = ["celery", "fastapi", "sqlalchemy"], version = "^1.41.0"}
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.2"
pylint = "^3.1.0"
flake8 = "^7.0.0"
mypy = "^1.9.0"
black = "^24.2.0"
bandit = "^1.7.8"
isort = "^5.13.2"
refurb = "^1.28.0"
flake8-noqa = "^1.4.0"
flake8-bugbear = "^24.2.6"
types-redis = "^4.6.0.20240218"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"