-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
69 lines (63 loc) · 1.8 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [{name = "Defxult"}]
name = "reactionmenu"
readme = "README.md"
version = "3.1.7"
description = "A library to create a discord.py 2.0+ paginator. Supports pagination with buttons, reactions, and category selection using selects."
requires-python = ">=3.8"
license = {text = "MIT"}
dependencies = ["discord.py>=2.0.0"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = [
"buttons",
"buttons paginator",
"buttons menu",
"discord",
"discord.py",
"discord.py 2.0",
"d.py",
"components",
"components paginator",
"components menu",
"discord components",
"discord components menu",
"discord buttons",
"discord buttons paginator",
"discord buttons menu",
"discord paginator",
"discord pagination",
"discord reaction menu",
"discord reactions",
"discord embed",
"discord menu",
"discord interactions",
"embed menu",
"embed reaction menu",
"embed paginator",
"interactions",
"interactions menu",
"interactions paginator",
"menus",
"paginator",
"pagination",
"pagination menu",
"reaction menu"
]
[project.urls]
Homepage = "https://github.com/Defxult/reactionmenu"
Changelog = "https://github.com/Defxult/reactionmenu/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["reactionmenu"]