-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (46 loc) · 1.12 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
[project]
name = "git-profile"
version = "1.1.3"
description = "Easily switch between Git configurations on a per-repository basis."
authors = [
{name = "Niklas Rosenstein", email = "[email protected]"},
]
dependencies = [
"databind>=4.5.2",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
[project.scripts]
git-profile = "git_profile_command:main"
[project.urls]
Repository = "https://github.com/NiklasRosenstein/git-profile"
Issues = "https://github.com/NiklasRosenstein/git-profile/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"ruff>=0.4.7",
"mypy>=1.10.0",
]
[tool.mypy]
python_version = "3.10"
explicit_package_bases = true
mypy_path = ["src"]
namespace_packages = true
pretty = true
show_error_codes = true
show_error_context = true
strict = true
warn_no_return = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = "git_profile_command._vendor.gitconfigparser"
ignore_errors = true
[tool.ruff]
line-length = 120