-
Notifications
You must be signed in to change notification settings - Fork 101
/
pyproject.toml
64 lines (57 loc) · 1.37 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "aiomultiprocess"
authors = [
{name = "Amethyst Reese", email="[email protected]"},
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
]
dynamic = ["version", "description"]
requires-python = ">=3.8"
[project.urls]
Documentation = "https://aiomultiprocess.omnilib.dev/en/latest/"
Github = "https://github.com/omnilib/aiomultiprocess"
[project.optional-dependencies]
dev = [
"attribution==1.7.1",
"black==24.4.0",
"coverage==7.4.4",
"flake8==7.0.0",
"flake8-bugbear==24.4.21",
"flit==3.9.0",
"mypy==1.9.0",
"usort==1.0.8.post1",
"uvloop==0.19.0; sys_platform != 'win32'",
]
docs = [
"sphinx==7.3.7",
"sphinx-mdinclude==0.6.0",
]
[tool.flit.sdist]
exclude = [
".github/",
]
[tool.attribution]
name = "aiomultiprocess"
package = "aiomultiprocess"
signed_tags = true
version_file = true
ignored_authors = ["dependabot", "pyup.io"]
[tool.coverage.run]
branch = true
include = ["aiomultiprocess/*"]
omit = ["aiomultiprocess/tests/*"]
concurrency = ["multiprocessing"]
[tool.coverage.report]
fail_under = 95
precision = 1
show_missing = true
skip_covered = true