add my_script.py and pyproject.toml
This commit is contained in:
parent
fd3cce3205
commit
ec1eee808f
5
my_script.py
Normal file
5
my_script.py
Normal file
@ -0,0 +1,5 @@
|
||||
def main():
|
||||
print("Hello world!")
|
||||
|
||||
|
||||
main()
|
14
pyproject.toml
Normal file
14
pyproject.toml
Normal 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"
|
Loading…
x
Reference in New Issue
Block a user