mirror of
https://github.com/kennethreitz/rhymepad.org.git
synced 2026-06-11 17:08:33 +00:00
33ea42dc6e
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
24 lines
498 B
TOML
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"]
|