From 0f87d22317266a679872567d60bae3a9b6f605c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Abdelkader=20Mart=C3=ADnez=20P=C3=A9rez?= Date: Fri, 2 Aug 2019 10:21:50 +0200 Subject: [PATCH] Setup files for PoC. Closes #7 --- poc/setup.cfg | 20 ++++++++++++++++++++ poc/setup.py | 15 +++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 poc/setup.py diff --git a/poc/setup.cfg b/poc/setup.cfg index de368cc..bc2f52f 100644 --- a/poc/setup.cfg +++ b/poc/setup.cfg @@ -1,3 +1,23 @@ +[metadata] +name = kapow +version = 0.0.1 +description = HTTP microframework for POSIX Shells +keywords = shell, posix, http, microservice, api +license = Apache 2.0 + +[options] +zip_safe = True +include_package_data = True +scripts = + bin/kapow + bin/request + bin/response + bin/static +install_requires = + aiohttp==3.5.4 + requests==2.22.0 + click==7.0 + [pycodestyle] max-line-length = 100 diff --git a/poc/setup.py b/poc/setup.py new file mode 100644 index 0000000..9f1c9c7 --- /dev/null +++ b/poc/setup.py @@ -0,0 +1,15 @@ +from setuptools import setup + + +print(""" +. . .,---.,---., .|, .,---.| +| | ||---||---'|\ |||\ || _.| +| | || || \ | \ ||| \ || | +`-'-'` '` `` `'`` `'`---'o +================================ + +You are installing a proof-of-concept software that IS NOT PRODUCTION READY. + +""") + +setup()