-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
48 lines (42 loc) · 1.45 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dpytest"
authors = [{name = "Rune Tynan", email = "[email protected]"},]
maintainers = [{name = "CraftSpider"},
{name = "Sergeileduc"}]
description = "A package that assists in writing tests for discord.py"
dynamic = ["readme", "version"]
license = {file = "LICENSE"}
requires-python = ">=3.8"
keywords = ["discord", "discord.py", "test"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Testing",
]
dependencies = [
"discord.py ~= 2.3",
"pytest",
"pytest-asyncio",
]
[project.optional-dependencies]
test = ["pytest", "pytest-asyncio"]
doc = ["sphinx"]
dev = ["flake8", "invoke", "build"]
[project.urls]
"Homepage" = "https://github.com/CraftSpider/dpytest"
"Source" = "https://github.com/CraftSpider/dpytest"
"Bug Tracker" = "https://github.com/CraftSpider/dpytest/issues"
"Documentation" = "https://dpytest.readthedocs.io/"
[tool.setuptools]
packages = ["discord.ext.test"]
[tool.setuptools.dynamic]
readme = {file = ["README.md", "HISTORY.md"], content-type = "text/markdown"}
version = {attr = "discord.ext.test.__version__"}