-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
67 lines (61 loc) · 1.38 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
65
66
67
# Python package build system requirements and information. See:
# https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/
# Build configuration
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# Project configuration
[project]
name = "dasbus"
version = "1.7"
description = "DBus library in Python 3"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
]
keywords = [
"dbus",
"glib",
"library"
]
authors = [
{name="Vendula Poncova", email="[email protected]"},
]
readme = "README.md"
[project.urls]
"Homepage" = "https://github.com/rhinstaller/dasbus"
"Bug Tracker" = "https://github.com/rhinstaller/dasbus/issues"
"Documentation" = "https://dasbus.readthedocs.io"
# Coverage configuration
[tool.coverage.run]
branch = true
parallel = true
source = [
"src",
"tests",
]
concurrency = [
"multiprocessing",
"thread",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise AssertionError",
"raise NotImplementedError",
"@abstractmethod",
]
# Pytest configuration
[tool.pytest.ini_options]
testpaths = [
"tests"
]
python_files = [
"tests/*.py"
]
addopts = "-vv"
log_level = "NOTSET"