-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (37 loc) · 1.24 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "DecoraterBotUtils"
version = "0.0.2"
license = { text="MIT" }
authors = [
]
description = "This package is for bringing various things to DecoraterBot."
# readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
'regex',
'colorama',
'discord.py',
'aiohttp',
'asqlite @ git+https://github.com/Rapptz/asqlite.git'
]
[project.urls]
"Homepage" = "https://github.com/DecoraterBot-devs/DecoraterBotUtils"
"Bug Tracker" = "https://github.com/DecoraterBot-devs/DecoraterBotUtils/issues"