python3/test/setup-test-app/setup.py
2017-08-21 00:28:57 +02:00

10 lines
259 B
Python

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