-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
81 lines (70 loc) · 1.56 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "idefix_cli"
version = "6.0.0dev0"
description = "A command line utility belt for Idefix"
authors = [
{ name = "C.M.T. Robert" },
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = [
"inifix>=4.2.2",
"packaging>=21.0",
"termcolor>=2.3.0",
"typing-extensions>=4.1.0;python_version < '3.11'",
]
[project.license]
text = "GPL-3.0"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
idfx = "idefix_cli.__main__:main"
baballe = "idefix_cli.__main__:alt_main"
[project.urls]
Homepage = "https://github.com/neutrinoceros/idefix_cli"
[dependency-groups]
test = [
"pytest-check>=2.1.2",
"pytest>=7.2.1",
]
typecheck = [
"mypy>=1.11.2",
]
[tool.ruff.lint]
exclude = ["*__init__.py"]
ignore = ["E501", "ISC001"]
select = [
"E",
"F",
"W",
"C4", # flake8-comprehensions
"B", # flake8-bugbear
"YTT", # flake8-2020
"ISC", # flake8-implicit-string-concatenation
"I", # isort
"UP", # pyupgrade
]
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ["idefix_cli"]
[tool.mypy]
python_version = '3.10'
show_error_codes = true
warn_unused_configs = true
warn_unused_ignores = true
warn_unreachable = true
show_error_context = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra --doctest-modules"
filterwarnings = [
"error",
]