-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
86 lines (67 loc) · 1.28 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"
# poetry
# ------
[tool.poetry]
name = "dotbot-windows"
version = "1.1.0"
description = "Configure Windows using dotbot"
authors = ["Kurt McKee <[email protected]>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/kurtmckee/dotbot-windows"
keywords = ["dotbot", "dotbot-plugin", "windows", "dotfiles"]
[tool.poetry.dependencies]
python = ">=3.9"
dotbot = ">=1.20.1"
# coverage
# --------
[tool.coverage.run]
branch = true
parallel = true
data_file = ".tox/.coverage-data-files/.coverage"
source = [
"dotbot_windows",
"tests",
]
[tool.coverage.paths]
source = [
"src",
"*/site-packages",
]
[tool.coverage.report]
fail_under = 100
# mypy
# ----
[tool.mypy]
packages = "dotbot_windows"
strict = true
sqlite_cache = true
[[tool.mypy.overrides]]
module = [
"dotbot.*",
"pytest",
]
ignore_missing_imports = true
# pytest
# ------
[tool.pytest.ini_options]
addopts = "--color=yes"
filterwarnings = [
"error",
]
# scriv
# -----
[tool.scriv]
version = "literal: pyproject.toml: tool.poetry.version"
categories = [
"Python support",
"Dotbot support",
"Added",
"Removed",
"Changed",
"Fixed",
"Documentation",
"Development",
]