-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
82 lines (73 loc) · 2.42 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "discord-ext-lava"
version = "1.0.0a1"
description = "A discord.py extension for the Lavalink API and WebSocket."
license = "MIT"
authors = ["Aaron Hennessey <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/aaronhnsy/discord-ext-lava"
repository = "https://github.com/aaronhnsy/discord-ext-lava"
documentation = "https://discord-ext-lava.readthedocs.io/en/latest/"
keywords = [
"discord", "discord.py", "discord-ext", "lavalink", "lavaplayer", "api", "wrapper", "async"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
packages = [
{ include = "discord/ext/lava" },
{ include = "discord/ext/lava/**/*.py" },
{ include = "discord/ext/lava/**/*.typed" },
]
include = [
"CHANGELOG.md", "LICENSE"
]
[tool.poetry.dependencies]
python = "^3.12.0"
aiohttp = "^3.9.0"
discord-py = "^2.3.0"
spoti-py = "^0.1.0"
typing-extensions = "^4.8.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.0"
sphinxcontrib-trio = "^1.1.0"
sphinx-copybutton = "^0.5.0"
sphinx-inline-tabs = "^2023.4.0"
furo = "^2023.9.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
colorama = "^0.4.0"
jishaku = { git = "https://github.com/Gorialis/jishaku/" }
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/aaronhnsy/discord-ext-lava/issues"
[tool.pyright]
include = ["discord/ext/lava"]
pythonVersion = "3.12"
typeCheckingMode = "strict"
useLibraryCodeForTypes = true
reportPrivateUsage = false
reportUnknownMemberType = false
reportUnnecessaryIsInstance = false
[tool.isort]
line_length = 110
lines_after_imports = 2
multi_line_output = 9
include_trailing_comma = true
extra_standard_library = ["typing_extensions"]
known_thirdparty = ["discord"]