-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpyproject.toml
39 lines (32 loc) · 977 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 = "deezer-downloader"
version = "2.0.9"
description = "download music from Deezer with a nice front end"
authors = ["kmille <[email protected]>"]
readme = "README.md"
packages = [{include = "deezer_downloader"}]
repository = "https://github.com/kmille/deezer-downloader"
homepage = "https://github.com/kmille/deezer-downloader"
[tool.poetry.dependencies]
python = "^3.9.1"
requests = {extras = ["socks"], version = "^2.28.2"}
flask = "^3.0.3"
python-mpd2 = "^3.0.5"
yt-dlp = "*"
pycryptodome = "^3.16.0"
jinja2 = "^3.1.2"
flask-autoindex = "^0.6.6"
giphypop = "^0.3"
waitress = "^3.0.0"
[tool.poetry.group.dev.dependencies]
pdbpp = "^0.10.3"
pytest = "^8.3.2"
python-magic = "^0.4.27"
flake8 = "^7.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
deezer-downloader = 'deezer_downloader.cli.runner:main'
[tool.setuptools.package-data]
deezer_downloader = ["cli/settings.ini.template"]