-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (47 loc) · 1.47 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
[tool.poetry]
name = "takt"
version = "1.0"
description = "Power your discord calls with music 🎐"
license = "MIT"
authors = ["Animenosekai <animenosekai.mail@gmail.com>"]
maintainers = ["Animenosekai <animenosekai.mail@gmail.com>"]
readme = "README.md"
repository = "https://github.com/Animenosekai/takt"
documentation = "https://github.com/Animenosekai/takt/blob/main/README.md"
keywords = ["animenosekai", "takt", "discord", "bot", "music", "youtube"]
classifiers = [
# Status
"Development Status :: 5 - Production/Stable",
# Environment
"Environment :: Console",
# Audience
"Intended Audience :: End Users/Desktop",
# Licensing
"License :: OSI Approved :: MIT License",
# Software Requirements
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
# Topics
"Topic :: Communications",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Players",
]
[tool.poetry.dependencies]
python = "^3.8"
"discord.py" = { version = "^1.7", extras = ["voice"] }
nasse = "^2"
youtube_dl = "2021.12.17"
yt-dlp = "2024.4.9"
PyNaCl = "^1.4"
discord-py-slash-command = "3.0.3"
[tool.poetry.scripts]
takt = 'takt.__main__:entry'
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/Animenosekai/takt/issues"
[tool.poetry.group.dev.dependencies]
mypy = "^1.4.1"
autopep8 = "^2.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"