Updated main.py and pyproject.toml with initial content for a Python project managed by Poetry.

This commit is contained in:
Timothy Farrell (aider) 2024-07-15 10:51:19 -05:00
commit 47e95292d7
2 changed files with 14 additions and 0 deletions

2
main.py Normal file
View File

@ -0,0 +1,2 @@
# This is a simple Python script that prints 'Hello, World!'
print("Hello, World!")

12
pyproject.toml Normal file
View File

@ -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 <your@email.com>"]
[tool.poetry.dependencies]
python = "^3.8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"