-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) · 1011 Bytes
/
pyproject.toml
File metadata and controls
44 lines (35 loc) · 1011 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nix_eval_jobs"
version = "0.1.0"
authors = [{ name = "Connor Baker", email = "ConnorBaker01@gmail.com" }]
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/nix-eval-jobs-python"
[tool.setuptools.package-data]
nix_eval_jobs = ["nix/eval/info.nix"]
[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.13"
pythonPlatform = "Linux"
typeCheckingMode = "strict"