diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..505a3b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ee54526 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,13 @@ +[project] +name = "kjvstudy-org" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "biblepy>=0.1.3", + "fastapi>=0.115.12", + "parse>=1.20.2", + "pytest>=8.3.5", + "uvicorn>=0.34.2", +]