This repository was archived by the owner on Apr 21, 2026. It is now read-only.
forked from Sacul0457/relink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
82 lines (76 loc) · 1.89 KB
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 = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "rewavelink"
dependencies = [
"aiohttp>=3.11.0,<4",
"msgspec>=0.20.0,<1",
"typing_extensions>=4.0.0",
"packaging>=26.0,<27.0",
]
requires-python = ">=3.12"
authors = [
{ name = "vmphase" },
{ name = "Soheab" },
{ name = "DA-344 (aka Developer Anonymous)" },
]
maintainers = [
{ name = "vmphase" },
{ name = "DA-344 (aka Developer Anonymous)" },
{ name = "Soheab" },
]
description = "A high-performance Lavalink v4 wrapper for Python, inspired by WaveLink."
readme = "README.md"
license = { text = "MIT" }
keywords = [
"lavalink",
"wavelink",
"fork",
"rewavelink",
"discord.py",
"discord",
"music",
"audio",
"bot",
"library",
"python",
"asyncio",
"pycord",
"py-cord",
"disnake",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.optional-dependencies]
speed = ["curl-cffi>=0.14.0,<1"]
docs = [
"sphinx>=9.1.0",
"furo",
"sphinx-copybutton",
"sphinx-autobuild>=2024.10.3",
]
[project.urls]
Repository = "https://github.com/rewavelink/relink"
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "strict"
reportPrivateUsage = false
[tool.ruff.lint]
ignore = ["F405", "F403"]
[tool.setuptools.dynamic]
version = { attr = "relink._version.__version__" }