-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
60 lines (54 loc) · 1.3 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "revizor-fuzzer"
version = "1.3.2"
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",
"flake8",
"setuptools"
]
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",
]
[tool.hatch.build.targets.wheel]
packages = ["revizor"]
[project.scripts]
rvzr = "revizor.cli:main"