mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[build-system]
|
|
requires = []
|
|
build-backend = "setup"
|
|
backend-path = ["backend"]
|
|
|
|
[project]
|
|
name = "lief"
|
|
authors = [
|
|
{name = "Romain Thomas", email = "contact@lief.re"},
|
|
]
|
|
description = "Library to instrument executable formats"
|
|
requires-python = ">=3.9"
|
|
keywords = ["parser", "elf", "pe", "macho", "reverse-engineering"]
|
|
license = {text = "Apache License 2.0"}
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: C++",
|
|
"Topic :: Software Development :: Libraries",
|
|
]
|
|
dynamic = ["version", "readme"]
|
|
|
|
[tool.scikit-build]
|
|
experimental = true
|
|
metadata.version.provider = "dynamic_provider"
|
|
metadata.readme.provider = "dynamic_provider"
|
|
|
|
[project.urls]
|
|
homepage = "https://lief-project.github.io/"
|
|
documentation = "https://lief-project.github.io/doc/latest/"
|
|
repository = "https://github.com/lief-project/LIEF"
|
|
changelog = "https://lief-project.github.io/doc/latest/changelog.html"
|
|
Funding = "https://github.com/sponsors/lief-project"
|
|
Tracker = "https://github.com/lief-project/LIEF/issues"
|