sca-fuzzer/pyproject.toml

61 строка
1.3 KiB
TOML
Исходник Постоянная ссылка Обычный вид История

2023-04-04 17:11:58 +03:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "revizor-fuzzer"
2024-09-12 15:57:24 +03:00
version = "1.3.2"
2023-04-04 17:11:58 +03:00
description = "A fuzzer to search for microarchitectural leaks in CPUs"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Typing :: Typed",
]
dependencies = [
"unicorn==1.0.3",
"pyyaml",
"types-pyyaml",
"numpy",
"pyelftools",
"xxhash",
"scipy",
"mypy",
2024-09-12 15:55:57 +03:00
"flake8",
"setuptools"
2023-04-04 17:11:58 +03:00
]
maintainers = [{name = "Oleksii Oleksenko", email = ""}]
[project.urls]
"Homepage" = "https://microsoft.github.io/sca-fuzzer/"
"Source code" = "https://github.com/microsoft/sca-fuzzer"
"Bug Tracker" = "https://github.com/microsoft/sca-fuzzer/issues"
"Changelog" = "https://github.com/microsoft/sca-fuzzer/releases"
[tool.hatch.build.sources]
"src" = "revizor"
[tool.hatch.build]
exclude = [
"demo/",
"docs/",
"mkdocs-overrides/",
"src/x86/executor/",
"tests/",
"tests/x86_tests/",
"tests/x86_tests/",
"base.json",
"site/",
"dbg/",
"revizor.code-workspace",
2023-04-04 17:11:58 +03:00
]
[tool.hatch.build.targets.wheel]
packages = ["revizor"]
2023-04-04 17:11:58 +03:00
[project.scripts]
rvzr = "revizor.cli:main"