Skip to content

Commit

Permalink
dist: set up pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
yhql committed May 27, 2024
1 parent 6bd303e commit b1fbf08
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 55 deletions.
44 changes: 44 additions & 0 deletions pyproject.toml
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"]
55 changes: 0 additions & 55 deletions setup.py

This file was deleted.

0 comments on commit b1fbf08

Please sign in to comment.