-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 879 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "igelfs"
description = "Python implementation of the IGEL filesystem."
version = "1.9.0"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Zack Didcott"}
]
maintainers = [
{name = "Zack Didcott"}
]
dependencies = [
"pillow",
"python-magic",
"rsa",
]
requires-python = ">= 3.10"
[project.optional-dependencies]
convert = ["pyparted"]
tests = ["pytest"]
[project.urls]
Homepage = "https://github.com/Zedeldi/igelfs"
[project.scripts]
igelfs-cli = "igelfs.cli:main"
[tool.isort]
profile = "black"
[tool.mypy]
enable_error_code = [
"ignore-without-code"
]
show_error_codes = true
warn_unused_ignores = true
[tool.pytest.ini_options]
markers = [
"inf: tests require LXOS configuration file",
"slow: tests take a while to complete",
]