Initial commit
This commit is contained in:
parent
c785944bae
commit
a3e6c67270
35 changed files with 1152 additions and 0 deletions
10
test/setup-test-app/setup.py
Normal file
10
test/setup-test-app/setup.py
Normal 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"],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue