-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (33 loc) · 887 Bytes
/
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
[tool.poetry]
name = "videodownload"
version = "0.1.0"
description = ""
authors = ["dxsooo <[email protected]>"]
package-mode = false
[tool.poetry.dependencies]
python = "^3.8.3"
yt-dlp = "^2024.0.0"
bilix = "^0.18.0"
python-dotenv = {version = "^1.0.0", optional = true}
celery = {version = "^5.2.7", optional = true}
pymongo = {version = "^4.6.0", optional = true}
flower = {version = "^2.0.0", optional = true}
[tool.poetry.group.dev.dependencies]
black = {version = "^24.0.0", allow-prereleases = true}
pytest = "^8.0.0"
pytest-cov = "^5.0.0"
pytest-custom-exit-code = "^0.3.0"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra"
testpaths = [
"tests"
]
pythonpath = [
"."
]
[tool.poetry.extras]
celery = ["python-dotenv", "celery", "pymongo", "flower", "protobuf"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"