Initial commit
This commit is contained in:
9
howdyho/__init__.py
Normal file
9
howdyho/__init__.py
Normal file
@@ -0,0 +1,9 @@
|
||||
def main():
|
||||
n = 0
|
||||
while True:
|
||||
print(f'хаудихо помоги ({n})')
|
||||
n += 1
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
5
howdyho/__main__.py
Normal file
5
howdyho/__main__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from . import main
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
14
pyproject.toml
Normal file
14
pyproject.toml
Normal file
@@ -0,0 +1,14 @@
|
||||
[tool.poetry]
|
||||
name = "howdyho"
|
||||
version = "1.0"
|
||||
description = "while True: print(\"хаудихо помоги\")"
|
||||
authors = ["Voronin9032 <voronin9032n3@gmail.com>"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.7"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
Reference in New Issue
Block a user