-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
44 lines (40 loc) · 1.12 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
[project]
name = "donjon-rainbow"
version = "2.0"
authors = [
{name = "Victor Servant", email = "[email protected]"},
{name = "Alexandre Iooss"},
{name = "Ján Jančár"},
]
description = "Generic Unicorn tracer for side-channels and fault injection"
requires-python = ">=3.7"
dependencies = [
"unicorn>=2.0.1",
"capstone>=4.0.0",
"cle>=9.2",
"intelhex",
"pygments",
"numpy",
"PyQt5"
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: System :: Emulators",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research"
]
[project.urls]
Homepage = "https://github.com/Ledger-Donjon/rainbow"
Issues = "https://github.com/Ledger-Donjon/rainbow/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = ["OAES_variance.jpg"]
[tool.hatch.build.targets.wheel]
packages = ["rainbow"]