Updated main.py and pyproject.toml with initial content for a Python project managed by Poetry.
This commit is contained in:
commit
47e95292d7
2
main.py
Normal file
2
main.py
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# This is a simple Python script that prints 'Hello, World!'
|
||||||
|
print("Hello, World!")
|
||||||
12
pyproject.toml
Normal file
12
pyproject.toml
Normal 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"
|
||||||
Loading…
x
Reference in New Issue
Block a user