aboutsummaryrefslogtreecommitdiff
path: root/Pipfile
blob: 9c514706adb6495dfb94df4228af235e5afb5b02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
pylint = "*"

[packages]
aiohttp = "*"
python-socketio = "~=5.0"
yt-dlp = "*"

[requires]
python_version = "3.8"
bgstack15