-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 946 Bytes
/
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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "async-solipsism"
dynamic = ["version", "readme"]
description = "Asyncio event loop that doesn't interact with the outside world"
authors = [
{name = "Bruce Merry", email = "[email protected]"}
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Software Development :: Testing :: Mocking",
]
[project.urls]
Homepage = "https://github.com/bmerry/async-solipsism"
[project.optional-dependencies]
test = [
"pre-commit",
"pytest",
"pytest-asyncio>=0.23",
"pytest-mock",
]
[tool.setuptools_scm]
[tool.setuptools.dynamic]
version = {attr = "async_solipsism.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}