-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
75 lines (65 loc) · 1.82 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "harmonize.py"
version = "1.0.1"
authors = ["Krista"]
description = "A robust and powerful, fully asynchronous Lavalink wrapper built for disnake in Python."
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pip = "^24.2"
disnake = "^2.9.2"
aiohttp = "^3.10.4"
loguru = "^0.6.0"
async-timeout = "^4.0.2"
[project]
name = "harmonize.py"
version = "1.0.1"
authors = [
{ name = "Krista", email = "[email protected]" },
]
dynamic = ["dependencies"]
description = "A robust and powerful, fully asynchronous Lavalink wrapper built for disnake in Python."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[project.urls]
"Homepage" = "https://github.com/Krispeckt/Harmonize"
[tool.setuptools]
packages = [
"harmonize",
"harmonize.abstract",
"harmonize.connection",
"harmonize.connection.cache",
"harmonize.connection.cache.nodes",
"harmonize.enums",
"harmonize.objects",
"harmonize.objects.filters",
"harmonize.utils",
]
[tool.setuptools.dynamic.dependencies]
file = ["requirements.txt"]
[tool.setuptools.package-data]
harmonize = ["py.typed"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.pyright]
ignore = ["test*.py", "examples/*.py", "docs/*"]
pythonVersion = "3.11"
typeCheckingMode = "strict"
reportPrivateUsage = false