mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
58b368fdd4
- biblepy was listed in pyproject.toml but never imported or used - Project uses custom Bible class in kjv.py instead - Custom implementation loads from local verses-1769.json file - Provides better control over caching, parsing, and search - Updated CLAUDE.md and README.md to reflect custom implementation - All 268 tests passing without biblepy Benefits of custom implementation: - Control over exact KJV edition (1769 Cambridge) - Custom verse parsing and search logic - LRU caching for performance optimization - Pre-processed verse text on load - No external API dependencies 🤖 Generated with Claude Code https://claude.com/claude-code Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
873 B
TOML
45 lines
873 B
TOML
[project]
|
|
name = "kjvstudy-org"
|
|
version = "0.1.0"
|
|
description = "Study the King James Bible with AI-powered commentary and insights"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"fastapi[standard]>=0.115.12",
|
|
"ged4py>=0.5.2",
|
|
"mistune>=3.0.2",
|
|
"parse>=1.20.2",
|
|
"python-gedcom>=1.0.0",
|
|
"requests>=2.32.3",
|
|
"weasyprint>=66.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3.5",
|
|
"pytest-cov>=6.0.0",
|
|
"pytest-xdist>=3.5.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
kjvstudy-org = "kjvstudy_org.main:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["kjvstudy_org*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
kjvstudy_org = ["static/*", "templates/*"]
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.5",
|
|
]
|