chore: initial commit
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
# Python-generated files
|
||||
__pycache__/
|
||||
*.py[oc]
|
||||
build/
|
||||
dist/
|
||||
wheels/
|
||||
*.egg-info
|
||||
|
||||
# Virtual environments
|
||||
.venv
|
||||
@@ -0,0 +1 @@
|
||||
3.12
|
||||
@@ -0,0 +1,4 @@
|
||||
# bookbot
|
||||
|
||||
BookBot is my first [Boot.dev](https://www.boot.dev) project!
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
"""Main entrypoint for bookbot"""
|
||||
|
||||
def main():
|
||||
"""Main method for bookbot"""
|
||||
print("Hello from bookbot!")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -0,0 +1,7 @@
|
||||
[project]
|
||||
name = "bookbot"
|
||||
version = "0.0.0"
|
||||
description = "bookbot"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = []
|
||||
Reference in New Issue
Block a user