Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dist: set up pyproject.toml #59

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.