-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
44 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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"] |