add my_script.py and pyproject.toml

This commit is contained in:
parent fd3cce3205
commit ec1eee808f
No known key found for this signature in database
GPG Key ID: 1D658084002C861C
2 changed files with 19 additions and 0 deletions

5
my_script.py Normal file
View File

@ -0,0 +1,5 @@
def main():
print("Hello world!")
main()

14
pyproject.toml Normal file
View File

@ -0,0 +1,14 @@
[project]
name = "my_requests_script"
version = "0.1.0"
description = "A simple script with hello world."
authors = [
{ name = "Kate", email = "keti.miroshnik@gmail.com" }
]
dependencies = ["requests>=2.28"]
requires-python = ">=3.7"
license = { text = "MIT" }
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"