-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
76 lines (66 loc) · 2.03 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ManagerX-Handler"
version = "1.2026.02.09.4"
description = "Comprehensive handler library for Discord bots built with py-cord [ManagerX Ecosystem]"
readme = "README.md"
authors = [
{name = "OPPRO.NET Development", email = "development@oppro-network.de"}
]
license = {text = "GPL-3.0-or-later"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["discord", "bot", "py-cord", "translation", "handler", "i18n"]
requires-python = ">=3.8"
dependencies = [
"aiohttp>=3.9.0",
"pyyaml>=6.0",
"py-cord>=2.7.0",
"colorama>=0.4.6",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"mypy>=1.5.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/Oppro-net-Development/ManagerX-Handler"
Documentation = "https://docs.oppro.net/managerx-handler"
Repository = "https://github.com/Oppro-net-Development/ManagerX-Handler"
Issues = "https://github.com/Oppro-net-Development/ManagerX-Handler/issues"
[tool.setuptools]
packages = ["mx_handler"]
[tool.setuptools.package-data]
handler = ["py.typed"]
[tool.black]
line-length = 100
target-version = ["py313"]
[tool.mypy]
python_version = "3.13"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.ruff]
line-length = 100
target-version = "py313"
select = ["E", "F", "I", "N", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]