-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (84 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
93 lines (84 loc) · 1.92 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "ext4"
version = "1.3.3"
authors = [
{ name="Eeems", email="eeems@eeems.email" },
]
description = "Library for read only interactions with an ext4 filesystem"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
]
license = "MIT"
dynamic = ["readme"]
dependencies = [
"cachetools==6.0.0",
"crcmod==1.7",
"typing-extensions==4.15.0; python_version<\"3.12\"",
]
[project.optional-dependencies]
dev = [
'wheel',
'build',
'ruff',
'basedpyright',
]
test = []
fuzz = ["atheris"]
[project.urls]
Homepage = "https://github.com/Eeems/python-ext4"
Repository = "https://github.com/Eeems/python-ext4.git"
Issues = "https://github.com/Eeems/python-ext4/issues"
[tool.setuptools]
packages = [
"ext4",
]
[tool.setuptools.dynamic]
readme = {file= ["README.md"], content-type = "text/markdown"}
[build-system]
requires = ["setuptools >= 77.0.3", "nuitka>=4.0.6"]
build-backend = "nuitka.distutils.Build"
[tool.ruff]
exclude = [".venv", "build"]
[tool.ruff.lint]
extend-select = [
"UP",
"PL",
"ANN",
"S",
]
ignore = [
"PLW0603",
"PLR2004",
"PLR0915",
"PLR0912",
"PLR0911",
"PLR6301",
"PLR0913",
"S101",
"S404",
"S603",
"S607",
"ANN401",
"ANN001",
"ANN003",
]
[tool.pyright]
exclude = [".venv", "build"]
reportMissingTypeStubs = false
reportImportCycles = false
[tool.emake]
test = ["bash ./test.sh"]