jirorian/pyproject.toml
randogoth 1f57b690dd Update README and declare missing dependencies
Add JIRORIAN_BASE_URL, JIRORIAN_PORT, JIRORIAN_APP_SECRETS to env var
table, fix dev command path (src/jirorian/), and explicitly declare
coincurve and cryptography in pyproject.toml.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-08 10:29:16 +03:00

20 lines
429 B
TOML

[project]
name = "jirorian"
version = "0.1.0"
description = "Nostr-native R2 image upload API"
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]>=0.115.0",
"boto3>=1.35.0",
"pynostr>=0.6.2",
"websockets>=13.0",
"coincurve>=21.0.0",
"cryptography>=44.0.0",
]
[project.scripts]
jirorian = "jirorian.main:main"
[build-system]
requires = ["uv_build>=0.11.0,<0.12.0"]
build-backend = "uv_build"