-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
228 lines (197 loc) · 7.52 KB
/
pyproject.toml
File metadata and controls
228 lines (197 loc) · 7.52 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
[project]
name = "pshell"
authors = [{ name = "Guido Imperiale", email = "[email protected]" }]
license = "Apache-2.0"
description = "An alternative to bash scripts"
keywords = ["bash", "shell"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Free Threading :: 3 - Stable",
"Topic :: System :: System Shells",
]
requires-python = ">=3.8"
dependencies = ["psutil >= 5.7"]
dynamic = ["version"]
[project.optional-dependencies]
zstd = ["backports.zstd; python_version < '3.14'"]
[project.urls]
homepage = "https://github.com/crusaderky/pshell"
issues = "https://github.com/crusaderky/pshell/issues"
documentation = "https://pshell.readthedocs.io/"
changelog = "https://pshell.readthedocs.io/en/latest/whats-new.html"
[project.readme]
text = "An alternative to bash scripts"
content-type = "text/plain"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.pytest]
minversion = "9.0"
strict = true
addopts = ["-v", "-r", "sxfE", "--color=yes", "--durations=10"]
python_files = ["test_*.py"]
testpaths = ["pshell/tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
# pytest-run-parallel markers, needed when pytest-run-parallel is not installed
"thread_unsafe: marks tests that are not thread safe",
]
filterwarnings = ["error"]
[tool.coverage.report]
show_missing = true
[tool.codespell]
skip = "pixi.lock,build,htmlcov"
[tool.ruff]
exclude = [".eggs"]
target-version = "py38"
[tool.ruff.lint]
ignore = [
"EM101", # Exception must not use a string literal, assign to variable first
"EM102", # Exception must not use an f-string literal, assign to variable first
"N802", # Function name should be lowercase
"N803", # Argument name should be lowercase
"N806", # Variable should be lowercase
"N816", # Variable in global scope should not be mixedCase
"PT006", # Wrong type passed to first argument of `pytest.mark.parametrize`; expected `tuple`
"PLC0414", # Import alias does not rename original package
"PLR0912", # Too many branches
"PLR0913", # Too many arguments in function definition
"PLR0915", # Too many statements
"PLR2004", # Magic value used in comparison, consider replacing `123` with a constant variable
"PLW2901", # for loop variable overwritten by assignment target
"SIM108", # Use ternary operator instead of if-else block
]
select = [
"YTT", # flake8-2020
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"EM", # flake8-errmsg
"EXE", # flake8-executable
"ICN", # flake8-import-conventions
"G", # flake8-logging-format
"PIE", # flake8-pie
"PT", # flake8-pytest-style
"RET", # flake8-return
"SIM", # flake8-simplify
"ARG", # flake8-unused-arguments
"I", # isort
"NPY", # NumPy specific rules
"N", # pep8-naming
"E", # Pycodestyle
"W", # Pycodestyle
"PGH", # pygrep-hooks
"F", # Pyflakes
"PD", # pandas-vet
"PL", # pylint
"UP", # pyupgrade
"RUF", # unused-noqa
"TID", # tidy-ups
"EXE001", # Shebang is present but file is not executable
]
[tool.ruff.lint.isort]
known-first-party = ["pshell"]
[tool.mypy]
files = ["pshell"]
python_version = "3.9" # 3.8 is not supported by mypy
disallow_incomplete_defs = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true
enable_error_code = ["ignore-without-code", "possibly-undefined", "truthy-bool"]
[[tool.mypy.overrides]]
module = ["*.tests.*"]
disallow_untyped_defs = false
[tool.pixi.workspace]
channels = ["https://prefix.dev/conda-forge"]
platforms = ["linux-64", "linux-aarch64", "osx-64", "osx-arm64", "win-64"]
[tool.pixi.dependencies]
python = "*"
psutil = "*"
[tool.pixi.feature.lint.dependencies]
lefthook = "*"
ruff = "*"
mypy = "*"
dprint = "*"
actionlint = "*"
codespell = "*"
blacken-docs = "*"
validate-pyproject = "*"
sphinx-lint = "*"
# mypy check dependencies
psutil = "*"
[tool.pixi.feature.lint.tasks]
install-git-hooks = { cmd = "lefthook install", description = "Install pre-commit hooks" }
lint = { cmd = "lefthook run pre-commit --all-files --force", description = "Run all linters" }
[tool.pixi.feature.smoke.tasks]
smoke-test = { cmd = "python smoke_test.py", description = "Test import the library and print essential information" }
[tool.pixi.feature.tests.dependencies]
pytest = "*"
pytest-cov = "*"
[tool.pixi.feature.tests.tasks]
tests = { cmd = "pytest", description = "Run tests" }
tests-cov = { cmd = "pytest --cov --cov-report=xml --cov-report=term", description = "Run tests with coverage" }
coverage = { cmd = "coverage html", depends-on = ["tests-cov"], description = "Generate test coverage html report" }
open-coverage = { cmd = "open htmlcov/index.html", depends-on = ["coverage"], description = "Open test coverage report" }
[tool.pixi.feature.docs.dependencies]
pip = "*"
sphinx = "*"
sphinx_rtd_theme = "*"
[tool.pixi.feature.docs.tasks]
docs = { cmd = "sphinx-build -n -j auto -b html -d ../build/doctrees . ../build/html", env = { PYTHONPATH = "$PIXI_PROJECT_ROOT" }, cwd = "doc", description = "Build docs" }
open-docs = { cmd = "open build/html/index.html", depends-on = ["docs"], description = "Open the generated docs" }
doc-requirements = { cmd = "echo '# File generated by `pixi run doc-requirements`' > doc/requirements.yml && pixi workspace export conda-environment -e docs >> doc/requirements.yml", description = "Export doc requirements for readthedocs CI" }
[tool.pixi.feature.ipython.dependencies]
ipython = "*"
[tool.pixi.feature.ipython.tasks]
ipython = { cmd = "ipython", description = "Launch IPython" }
# Lowest python version supported by pytest 9; on 3.8 pytest config will be ignored
[tool.pixi.feature.py310.dependencies]
python = "=3.10"
"backports.zstd" = "*" # python >=3.9,<3.14
[tool.pixi.feature.py314.dependencies]
python = "=3.14"
[tool.pixi.feature.nogil.dependencies]
python-freethreading = "=3.14"
pytest-run-parallel = "*"
[tool.pixi.feature.mindeps.dependencies]
# Note: also tests lack of zstd backport
python = "=3.8"
psutil = "=5.7"
[tool.pixi.feature.dist.dependencies]
python-build = "*"
twine = "*"
[tool.pixi.feature.dist.tasks]
dist-clear = { cmd = "rm -rf build dist" }
build = { cmd = "python -m build", description = "Build pypi artifacts" }
dist = { depends-on = ["dist-clear", "build", "twine-check"] }
twine-check = { cmd = "python -m twine check dist/*" }
twine-upload = { cmd = "python -m twine upload dist/*" }
[tool.pixi.environments]
default = { features = ["py314", "docs", "smoke", "tests", "ipython"], solve-group = "py314" }
dist = { features = ["dist"], no-default-feature = true }
lint = { features = ["lint"], no-default-feature = true }
docs = { features = ["py314", "docs"], solve-group = "py314" }
mindeps = { features = ["mindeps", "smoke", "tests"] }
py310 = { features = ["py310", "smoke", "tests"] }
py314 = { features = ["py314", "smoke", "tests"], solve-group = "py314" }
nogil = { features = ["nogil", "smoke", "tests"] }
smoke = { features = ["smoke"] }