-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (82 loc) · 2.07 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
83
84
85
86
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "discord.py-tools"
description = "Simple tools for discord.py"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [{ name = "Developer Anonymous" }]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet",
"Topic :: Software Development :: Localization",
]
dynamic = ["version", "dependencies"]
[project.optional-dependencies]
po-i18n = [
"polib==1.2.0",
]
yaml-i18n = [
"pyyaml<7.0.0",
]
docs = [
"sphinx==8.0.2",
"sphinxcontrib_trio==1.1.2",
"sphinxcontrib-websupport==2.0.0",
"myst-parser[linkify]==4.0.0",
"sphinxext-opengraph==0.9.1",
"sphinx-copybutton==0.5.2",
"furo==2024.8.6",
"sphinx-autodoc-typehints==2.2.3",
"sphinx-intl==2.2.0",
"typing_extensions==4.12.2",
"levenshtein==0.25.1",
"discord.py",
]
speed = [
"orjson>=3.5.4",
"aiodns>=1.1; sys_platform != 'win32'",
"Brotli",
"cchardet==2.1.7; python_version < '3.10'",
"discord.py[speed]",
]
voice = [
"discord.py[voice]",
"libnacl==1.6.0",
]
[tool.setuptools]
packages = [
"discord_tools",
"discord_tools.ipc",
"discord_tools.app_commands",
"discord_tools.app_commands.i18n",
]
include-package-data = true
[tool.pyright]
include = [
"discord_tools",
"discord_tools/ipc",
"discord_tools/app_commands",
"discord_tools/app_commands/i18n",
]
exclude = [
"**/__pycache__",
"build",
"dist",
"docs",
]
reportUnnecessaryTypeIgnoreComment = "warning"
reportUnusedImport = "error"
pythonVersion = "3.9"
typeCheckingMode = "basic"