Initial commit

This commit is contained in:
2021-04-06 00:02:17 +03:00
commit 85f146e951
4 changed files with 29 additions and 0 deletions

1
README.md Normal file
View File

@@ -0,0 +1 @@
# howdyho

9
howdyho/__init__.py Normal file
View 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
View File

@@ -0,0 +1,5 @@
from . import main
if __name__ == '__main__':
main()

14
pyproject.toml Normal file
View 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"