repo: init

welcome 👋 to my world 🌍
This commit is contained in:
Artur Manuel 2024-08-11 08:22:48 +01:00
commit edcf6f758e
Failed to generate hash of commit
11 changed files with 134 additions and 2 deletions

View file

@ -0,0 +1,11 @@
#!/usr/bin/env python
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
if __name__ == '__main__':
app.run(host="0.0.0.0", port=8080)

View file

@ -0,0 +1,11 @@
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='python-app',
version='0.1.0',
# Modules to import from other scripts:
packages=find_packages(),
# Executables
scripts=["python-app"],
)