Initial commit

This commit is contained in:
Honza Horak 2017-08-21 00:28:57 +02:00
commit a3e6c67270
35 changed files with 1152 additions and 0 deletions

View file

@ -0,0 +1,10 @@
from setuptools import setup, find_packages
setup (
name = "testapp",
version = "0.1",
description = "Example application to be deployed.",
packages = find_packages(),
install_requires = ["gunicorn"],
)