-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
52 lines (46 loc) · 1.34 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [{name = "Defxult#8269"}]
name = "discordLevelingSystem"
readme = "README.md"
version = "1.2.1"
description = "A library to implement a leveling system into a discord bot. Contains features such as XP, level, ranks, and role awards."
requires-python = ">=3.8"
license = {text = "MIT"}
dependencies = ["discord.py>=2.0.0", "aiosqlite>=0.17.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",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = [
"database",
"discord",
"discord bot",
"discord.py",
"discord py",
"discord level",
"discord leveling",
"discord leveling system",
"level",
"levels",
"leveling",
"level up",
"level system",
"mee6",
"rank",
"ranking",
"role award",
"xp"
]
[project.urls]
Homepage = "https://github.com/Defxult/discordLevelingSystem"
Changelog = "https://github.com/Defxult/discordLevelingSystem/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["discordLevelingSystem"]