commit a59e2f96aa58031e6564438fe3e34a57ccd7b3d5 Author: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Wed May 20 11:41:59 2026 -0500 chore: initial commit 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..e4fba21 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 diff --git a/README.md b/README.md new file mode 100644 index 0000000..4616ce8 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# bookbot + +BookBot is my first [Boot.dev](https://www.boot.dev) project! + diff --git a/main.py b/main.py new file mode 100644 index 0000000..f4118ef --- /dev/null +++ b/main.py @@ -0,0 +1,8 @@ +"""Main entrypoint for bookbot""" + +def main(): + """Main method for bookbot""" + print("Hello from bookbot!") + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..3e82783 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "bookbot" +version = "0.0.0" +description = "bookbot" +readme = "README.md" +requires-python = ">=3.12" +dependencies = []