forked from omnilib/aiomultiprocess
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.04 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "aiomultiprocess"
author = "Amethyst Reese"
author-email = "amy@noswap.com"
description-file = "README.md"
home-page = "https://aiomultiprocess.omnilib.dev"
requires = []
requires-python = ">=3.6"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
]
[tool.flit.metadata.urls]
Documentation = "https://aiomultiprocess.omnilib.dev/en/latest/"
Github = "https://github.com/omnilib/aiomultiprocess"
[tool.flit.sdist]
exclude = [
".github/",
]
[tool.attribution]
name = "aiomultiprocess"
package = "aiomultiprocess"
signed_tags = true
version_file = true
[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