-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
97 lines (76 loc) · 2.83 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
#requires = ["poetry>=1.0"]
#build-backend = "poetry.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"
[tool.poetry]
name = "scdlbot"
description = "Telegram Bot for downloading MP3 rips of tracks/sets from SoundCloud, Bandcamp, YouTube with tags and artwork"
version = "0.13.7"
license = "MIT"
authors = ["George Pchelkin <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/gpchelkin/scdlbot"
homepage = "https://github.com/gpchelkin/scdlbot"
documentation = "https://scdlbot.readthedocs.io"
keywords = ["scdlbot", "telegram", "bot", "soundcloud", "bandcamp", "youtube", "mixcloud", "yandex", "audio", "music", "download"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Internet",
"Operating System :: OS Independent",
"Natural Language :: English",
]
include = ["AUTHORS.rst", "CONTRIBUTING.md", "CHANGELOG.rst", "LICENSE", "README.rst", "tests/*", "docs/*.rst", "docs/conf.py", "docs/Makefile", "docs/*.jpg", "docs/*.png", "docs/*.gif", "scdlbot/texts/*"]
[tool.poetry.scripts]
scdlbot = "scdlbot.__main__:main"
[tool.poetry.dependencies]
python = "^3.6"
#python-telegram-bot = "13.1"
python-telegram-bot = "12.8"
python-telegram-handler = "2.2"
boltons = "20.2.1"
plumbum = "1.6.9"
ffmpeg-python = "0.2.0"
mutagen = "1.45.1"
patool = "1.12"
requests = "^2.25.0"
prometheus_client = "0.9.0"
celery = "^5.0.1"
#pyshorteners = "0.6.1"
#transliterate = "1.10.2"
### For publishing to PyPI:
youtube_dl = "2021.1.8"
#youtube-dlc = "2020.11.11.post3"
#scdl = "1.6.12"
#bandcamp-downloader = "0.0.8.post12"
### For making it really work:
# https://github.com/ytdl-org/youtube-dl/pull/26684
#youtube_dl = { git = "https://github.com/l1ving/youtube-dl.git" }
#youtube_dl = { git = "https://github.com/gilou/youtube-dl.git", branch = "bandcamp_update" }
#youtube_dl = { git = "https://github.com/gpchelkin/youtube-dl.git", branch = "bandcamp_update" }
#youtube-dlc = { git = "https://github.com/blackjack4494/yt-dlc.git", branch = "master" }
scdl = { git = "https://github.com/flyingrub/scdl.git" }
bandcamp-downloader = { git = "https://github.com/iheanyi/bandcamp-dl.git" }
[tool.poetry.dev-dependencies]
mypy = "^0.790"
wemake-python-styleguide = "^0.14"
flake8-pytest = "^1.3"
flake8-pytest-style = "^1.3"
nitpick = "^0.23.0"
safety = "^1.10.0"
pytest = "^6.2.0"
pytest-cov = "^2.10"
pytest-randomly = "^3.5"
sphinx = "^3.4.0"
sphinx-autodoc-typehints = "^1.11.0"
doc8 = "^0.8"
m2r2 = "^0.2"
tomlkit = "^0.7"
tox = "^3.21"
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}