-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (33 loc) · 976 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "nix_eval_jobs"
version = "0.1.0"
authors = [{ name = "Connor Baker", email = "[email protected]" }]
requires-python = ">=3.11"
license = { text = "BSD-3-Clause" }
description = "nix-eval-jobs but worse"
dependencies = ["annotated-types", "pydantic", "rich"]
[project.optional-dependencies]
dev = ["ruff"]
[project.scripts]
nix-eval-jobs-python = "nix_eval_jobs.cmd:main.main"
[project.urls]
Homepage = "https://github.com/ConnorBaker/cuda-packages/tree/main/redist/scripts/cuda-redist"
[tool.ruff]
line-length = 120
[tool.ruff.format]
preview = true
[tool.ruff.lint]
preview = true
select = ["F", "E", "W", "I", "PL", "FURB", "LOG", "RUF", "G", "TID"]
ignore = [
# Ignore functions with many arguments (I like currying)
"PLR0913",
]
[tool.pyright]
include = ["./nix_eval_jobs"]
pythonVersion = "3.11"
pythonPlatform = "Linux"
typeCheckingMode = "strict"