mirror of
https://github.com/platomav/BIOSUtilities.git
synced 2025-05-09 05:42:00 -04:00

Improved UAF module detection at AMI UCP Extract Fixed crashes at Dell PFS and Award BIOS Extract Upgraded dependency "dissect.util" to 3.20
51 lines
1.7 KiB
TOML
51 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["setuptools >= 61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "biosutilities"
|
|
license = {text = "BSD-2-Clause-Patent"}
|
|
authors = [
|
|
{name = "Plato Mavropoulos"}
|
|
]
|
|
maintainers = [
|
|
{name = "Plato Mavropoulos"}
|
|
]
|
|
description = "Various BIOS Utilities for Modding/Research"
|
|
keywords = [
|
|
"bios", "uefi", "firmware", "extract", "unpack", "package", "ami", "insyde", "phoenix", "award",
|
|
"apple", "dell", "fujitsu", "panasonic", "toshiba", "dynabook", "vaio", "portwell", "bios guard",
|
|
"pfat", "ucp", "im4p", "pbzx", "efi", "pfs", "sfx", "upc", "iflash", "ifdpacker", "ifd", "com"
|
|
]
|
|
readme = "README.md"
|
|
dynamic = ["version"]
|
|
requires-python = ">= 3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Operating System :: MacOS",
|
|
"Topic :: Security",
|
|
"Topic :: Scientific/Engineering :: Information Analysis"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
lznt1 = ["dissect.util == 3.20"]
|
|
pefile = ["pefile == 2023.2.7"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/platomav/BIOSUtilities"
|
|
Repository = "https://github.com/platomav/BIOSUtilities"
|
|
Issues = "https://github.com/platomav/BIOSUtilities/issues"
|
|
Readme = "https://github.com/platomav/BIOSUtilities/blob/main/README.md"
|
|
Changelog = "https://github.com/platomav/BIOSUtilities/blob/main/CHANGELOG"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["biosutilities*"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "biosutilities.__version__"}
|