-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.84 KB
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
[project]
name = "wumpy-testing"
version = "0.0.0"
description = "Utilities for testing Wumpy projects."
readme = {file = "README.md", content-type="text/markdown"}
# Pytest has 3.7 as its current minimum requirement
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [{name = "Bluenix", email = "bluenixdev@gmail.com"}]
keywords = [
"wumpy", "wumpus", "wrapper",
"discord", "discord-api", "discord-bot", "discord-api-wrapper",
"python-3"
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
# The @pytest.mark.anyio decorator runs tests with both asyncio and trio even
# when it isn't installed so we need to make sure that trio is installed.
dependencies = ["pytest > 7, < 8", "anyio[trio] >= 3.3.4, <4"]
[project.urls]
Homepage = "https://github.com/wumpyproject"
Repository = "https://github.com/wumpyproject/wumpy-testing"
Documentation = "https://wumpy.rtfd.io"
[build-system]
requires = ["flit_core >=3.5, <4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
# This is a subpackage under the wumpy namespace package,
# we need to tell flit this otherwise it tries to make the
# import wumpy-gateway rather than wumpy.gateway
name = "wumpy.testing"