commit 47e95292d700ccd8443814bb7bd5091cd65cbeab Author: Timothy Farrell (aider) Date: Mon Jul 15 10:51:19 2024 -0500 Updated main.py and pyproject.toml with initial content for a Python project managed by Poetry. diff --git a/main.py b/main.py new file mode 100644 index 0000000..c479e02 --- /dev/null +++ b/main.py @@ -0,0 +1,2 @@ +# This is a simple Python script that prints 'Hello, World!' +print("Hello, World!") diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..32cc25d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,12 @@ +[tool.poetry] +name = "my-python-project" +version = "0.1.0" +description = "A new Python project managed by Poetry." +authors = ["Your Name "] + +[tool.poetry.dependencies] +python = "^3.8" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"