-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (53 loc) · 1.3 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
[tool.poetry]
name = "semmy"
description = "Semantic versioning made easy for Python"
version = "1.0.0"
authors = [
"Niko Heikkilä <[email protected]>"
]
license = "MIT"
readme = "README.md"
homepage = "https://pypi.org/project/semmy/"
repository = "https://github.com/nikoheikkila/semmy"
documentation = "https://github.com/nikoheikkila/semmy/blob/main/README.md"
[tool.poetry.dependencies]
python = ">=3.8.1"
[tool.poetry.dev-dependencies]
publicator = "^1.0.0"
pytest = "^8.0.0"
pytest-mock = "^3.6.1"
mypy = "^1.0"
black = "^24.0.0"
flake8 = "^7.0.0"
mutmut = "^2.2.0"
hypothesis = "^6.36.1"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/nikoheikkila/semmy/issues"
"Discussions" = "https://github.com/nikoheikkila/semmy/discussions"
[tool.poetry.group.dev.dependencies]
assertpy = "^1.1"
[tool.publicator]
any-branch = false
clean = true
publish = true
push = true
release-draft = true
tag = true
template = "release: %s"
test-script = "pytest -x --assert=plain"
[tool.black]
line-length = 120
include = "\\.pyi?$"
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.mutmut]
paths_to_mutate = "Semmy/"
tests_dir = "tests/"
disable_mutation_types = "string"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"