Files
nostr-keygen/pyproject.toml
2025-09-08 19:37:12 -04:00

15 lines
410 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nostr-keygen"
version = "0.1.0"
description = "Terminal tool to generate nostr npub/nsec from file entropy"
authors = [{name = "Your Name", email = "you@example.com"}]
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["ecdsa", "bech32"]
[project.scripts]
nostr-keygen = "main:main"