-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.35 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
[project]
name = "ezcord"
description = "An easy-to-use extension for Discord.py and Pycord"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
keywords = ["discord", "pycord", "py-cord", "discord.py"]
authors = [
{ name = "tibue99" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"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",
]
dynamic = ["dependencies", "optional-dependencies", "version"]
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
version = {attr = "ezcord.__version__"}
[tool.setuptools.dynamic.optional-dependencies]
docs = {file = "docs/requirements.txt"}
[tool.pytest.ini_options]
markers = [
"dc: Marker for Discord-related tests"
]
[project.urls]
GitHub = "https://github.com/tibue99/ezcord"
Documentation = "https://ezcord.readthedocs.io"
[build-system]
requires = ["setuptools>=62.6", "wheel"]
build-backend = "setuptools.build_meta"