Files
kennethreitz 33ea42dc6e Add ISC license
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-11 11:38:12 -04:00

24 lines
498 B
TOML

[project]
name = "rhymepad"
version = "0.1.0"
description = "A scratchpad for poets & rappers — phoneme-aware rhyme-scheme detection."
license = "ISC"
authors = [{ name = "Kenneth Reitz", email = "me@kennethreitz.org" }]
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.110",
"uvicorn>=0.29",
"pronouncing>=0.2",
"wordfreq>=3.0",
"g2p-en>=2.1.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.3",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]