-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (62 loc) · 1.83 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=65.5.0", "setuptools_scm[toml]>=6.4.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dissect.squashfs"
description = "A Dissect module implementing a parser for the SquashFS file system, commonly used in appliance or device firmware"
readme = "README.md"
requires-python = "~=3.9"
license.text = "Affero General Public License v3"
authors = [
{name = "Dissect Team", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet :: Log Analysis",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security",
"Topic :: Utilities",
]
dependencies = [
"dissect.cstruct>=4,<5",
"dissect.util>=3,<4",
]
dynamic = ["version"]
[project.urls]
homepage = "https://dissect.tools"
documentation = "https://docs.dissect.tools/en/latest/projects/dissect.squashfs"
repository = "https://github.com/fox-it/dissect.squashfs"
[project.optional-dependencies]
full = [
"zstandard",
]
lzo = [
# There are no Windows PyPy wheels available for python-lzo
# So we use a pure python fallback for it.
"python-lzo; platform_system != 'Windows' or platform_python_implementation != 'PyPy'",
]
lz4 = [
"lz4",
]
dev = [
"dissect.squashfs[full]",
"dissect.cstruct>=4.0.dev,<5.0.dev",
"dissect.util>=3.0.dev,<4.0.dev",
]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
known_first_party = ["dissect.squashfs"]
known_third_party = ["dissect"]
[tool.setuptools]
license-files = ["LICENSE", "COPYRIGHT"]
[tool.setuptools.packages.find]
include = ["dissect.*"]
[tool.setuptools_scm]