cryptopals/pyproject.toml

20 lines
459 B
TOML
Raw Normal View History

2025-04-20 12:34:18 -04:00
[project]
name = "cryptopals"
2025-04-25 20:32:42 -04:00
version = "0.1"
2025-04-20 12:34:18 -04:00
authors = [
{ name="Joshua Flores", email="josh@heavyguys.net"},
]
description = "A place to hold solutions for the Cryptopals Challenges"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E"]
[project.urls]
Homepage = "https://git.heavyguys.net/Josh/cryptopals"