-
Notifications
You must be signed in to change notification settings - Fork 49
/
pyproject.toml
48 lines (39 loc) · 1.01 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nix-update"
description = "Swiss-knife for updating nix packages"
version = "1.7.0"
license = { text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: Utilities",
"Intended Audience :: Developers",
]
[project.urls]
Homepage = "https://github.com/Mic92/nix-update"
[project.scripts]
nix-update = "nix_update:main"
[tool.pytest.ini_options]
addopts = "-v -n auto"
[tool.ruff]
target-version = "py311"
line-length = 88
lint.select = ["E", "F", "I", "U"]
lint.ignore = [ "E501" ]
[tool.mypy]
python_version = "3.11"
pretty = true
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
no_implicit_optional = true
[[tool.mypy.overrides]]
module = "setuptools.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pytest.*"
ignore_missing_imports = true