-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (72 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
84 lines (72 loc) · 2.19 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "python-dispatch"
version = "0.2.3"
description = "Lightweight Event Handling Library for Python"
authors = [
{ name = "Matthew Reid", email = "matt@nomadic-recording.com" }
]
readme = "README.md"
license = "MIT"
keywords = ["event", "properties", "dispatch"]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"importlib-metadata; python_version < '3.8'"
]
[project.urls]
Documentation = "https://python-dispatch.readthedocs.io/"
Source = "https://github.com/nocarryr/python-dispatch"
Download = "https://pypi.org/project/python-dispatch/"
Tracker = "https://github.com/nocarryr/python-dispatch/issues"
[build-system]
requires = ["uv_build>=0.9.16,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""
module-name = "pydispatch"
[tool.uv.sources]
python-dispatch-sphinx = { path = "sphinx-plugin", package = false }
[tool.pytest.ini_options]
testpaths = ["tests", "doc", "pydispatch"]
addopts = "--doctest-modules --doctest-glob='*.rst' --doctest-glob='*.md'"
doctest_plus = "enabled"
asyncio_mode = "auto"
[dependency-groups]
doc = [
"furo>=2022.4.7",
"m2r2>=0.3.2",
"setuptools>=60.2.0",
"sphinx<5.0.0",
"sphinx-panels>=0.6.0",
"sphinx-rst-builder>=0.0.3",
"sphinx-rtd-theme>=1.3.0",
]
test = [
{include-group = "doc"},
"coveralls>=3.3.1",
"pytest>=7.0.1",
"pytest-asyncio>=0.16.0",
"pytest-cov>=4.0.0",
"pytest-doctestplus>=0.9.0",
"tomli; python_version < '3.11'",
]
dev = [
{include-group = "test"},
"python-dispatch-sphinx",
]