forked from gpchelkin/scdlbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
111 lines (88 loc) · 3.88 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.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.7"
# Docs, optional, use `poetry install -E docs` to install them:
sphinx = { version = "^5.0", optional = true }
sphinx-autodoc-typehints = { version = "^1.12", optional = true }
recommonmark = { version = "^0.7", optional = true }
m2r2 = { version = "^0.3", optional = true }
tomlkit = { version = "^0.11", optional = true }
typing-extensions = { version = "^4.1", optional = true }
# Requirements of project's code:
#python-telegram-bot = "13.11"
python-telegram-bot = "12.8"
python-telegram-handler = "2.2.1"
boltons = "21.0.0"
plumbum = "1.7.2"
ffmpeg-python = "0.2.0"
mutagen = "1.45.1"
patool = "1.12"
requests = "^2.26.0"
prometheus_client = "^0.14.0"
#celery = "^5.2.6"
#pyshorteners = "1.0.1"
#transliterate = "1.10.2"
### For publishing to PyPI:
#yt-dlp = "2022.4.8"
#youtube_dl = "2021.12.17"
#youtube-dlc = "2020.11.11.post3"
#scdl = "2.7.1"
#bandcamp-downloader = "0.0.12"
### 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" }
yt-dlp = { git = "https://github.com/yt-dlp/yt-dlp.git", branch = "master" }
#yt-dlp = { git = "https://github.com/pritam20ps05/yt-dlp.git", branch = "instagram_fix" }
scdl = { git = "https://github.com/flyingrub/scdl.git", branch = "master" }
#scdl = { git = "https://github.com/gpchelkin/scdl.git", branch = "add_permalink_url_to_filename" }
#scdl = { git = "https://github.com/def-hash/scdl.git", branch = "user-agent-fix" }
#scdl = { git = "https://github.com/7x11x13/scdl.git", branch = "master" }
bandcamp-downloader = { git = "https://github.com/iheanyi/bandcamp-dl.git", branch = "master" }
#bandcamp-downloader = { git = "https://github.com/gpchelkin/bandcamp-dl.git", branch = "demjson3" }
#fake-useragent = { git = "https://github.com/Jordan9675/fake-useragent.git", branch = "master" }
[tool.poetry.dev-dependencies]
mypy = "^0.971"
wemake-python-styleguide = "^0.16"
flake8-pytest = "^1.4"
flake8-pytest-style = "^1.6.0"
doc8 = "^1.0.0"
nitpick = "^0.32.0"
safety = "^2.1.0"
pytest = "^7.0.1"
pytest-cov = "^3.0"
pytest-randomly = "^3.10"
tox = "^3.25"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-autodoc-typehints", "recommonmark", "m2r2", "tomlkit", "typing-extensions"]
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}