python3/test/micropipenv-test-app/setup.py
phracek 3300dd8839 auto-sync: master commit 897c8e39fe1df6c7bb6418d2892ccbd118d723f8
\n\nUpstreamCommitID: 546dfadbf110928dd357a55674ae7beabff8bcee\nUpstreamCommitLink: 546dfadbf1\nUpstreamRepository: https://github.com/sclorg/s2i-python-container
2020-05-20 09:17:29 +00: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"],
)