-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
50 lines (41 loc) · 1.17 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
[project]
name = "sysplant"
version = "0.5.1"
description = "SysPlant - Your syscall factory"
authors = [
{name = "Ben Mz", email = "x42en@users.noreply.github.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10,<4"
[project.optional-dependencies]
mcp = ["mcp[cli]>=1.0"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.0"
poetry-bumpversion = "^0.3.3"
pytest-cov = "^6.0.0"
[tool.poetry.group.mcp]
optional = true
[tool.poetry.group.mcp.dependencies]
mcp = {version = ">=1.0", extras = ["cli"]}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry_bumpversion.replacements]]
files = ["__metadata.py"]
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'
[tool.pytest.ini_options]
# Also see
# https://docs.pytest.org/en/6.2.x/customize.html#pyproject-toml
# https://pytest-cov.readthedocs.io/en/latest/config.html
# If you want to see console output from tests, include -s flag
addopts = [
'--cov-fail-under=80',
'--cov-report=html:pytest',
'--cov-report=term-missing',
'--junitxml=report.xml'
]
[tool.coverage.run]
omit = ["tests"]
source = ["sysplant"]