-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
49 lines (43 loc) · 1012 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
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nix_alien"
description = "Run unpatched binaries on Nix/NixOS"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["nix", "nixos"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"pyfzf",
"pylddwrap",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest"]
[project.scripts]
nix-alien = "nix_alien.fhs_env:main"
nix-alien-ld = "nix_alien.nix_ld:main"
nix-alien-find-libs = "nix_alien.libs:main"
[tool.setuptools.package-data]
nix_alien = ["*.nix"]
[tool.setuptools.dynamic]
version = {attr = "nix_alien._version.__version__"}
[tool.ruff]
select = [
"B", # flake8-bugbear
"E", # pycodestyle
"F", # Pyflakes
"I", # isort
"PL", # pylint
"RUF", # ruff
"SIM", # flake8-simplify
"UP", # pyupgrade
"W", # pycodestyle
]
ignore = [
"PLR0913" # too-many-arguments
]