Initial commit: basic keygen tool

This commit is contained in:
Logen
2025-09-08 17:51:35 -04:00
commit 56041b244d
4 changed files with 147 additions and 0 deletions

12
pyproject.toml Normal file
View File

@@ -0,0 +1,12 @@
[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"]