File: pyproject.toml

package info (click to toggle)
grml2usb 0.20.11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 676 kB
  • sloc: python: 1,485; sh: 330; asm: 225; makefile: 69
file content (26 lines) | stat: -rw-r--r-- 470 bytes parent folder | download
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
[project]
name = "grml2usb"
version = "0.0.0"
description = "Install Grml system to USB device"
requires-python = ">=3.10"
dependencies = [
    "pyparted; sys_platform == 'linux'",
]

[project.optional-dependencies]
test = [
    "pytest",
]

[tool.pytest.ini_options]
markers = [
    "check_for_usbdevice",
    "require_root: mark test to run only as root",
]

[tool.ruff]
include = ["grml2usb", "*.py"]

[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]