Setup files for PoC. Closes #7
This commit is contained in:
@@ -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]
|
[pycodestyle]
|
||||||
max-line-length = 100
|
max-line-length = 100
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
|
print("""
|
||||||
|
. . .,---.,---., .|, .,---.|
|
||||||
|
| | ||---||---'|\ |||\ || _.|
|
||||||
|
| | || || \ | \ ||| \ || |
|
||||||
|
`-'-'` '` `` `'`` `'`---'o
|
||||||
|
================================
|
||||||
|
|
||||||
|
You are installing a proof-of-concept software that IS NOT PRODUCTION READY.
|
||||||
|
|
||||||
|
""")
|
||||||
|
|
||||||
|
setup()
|
||||||
Reference in New Issue
Block a user