\n\nUpstreamCommitID: 546dfadbf110928dd357a55674ae7beabff8bcee\nUpstreamCommitLink: 546dfadbf1\nUpstreamRepository: https://github.com/sclorg/s2i-python-container
10 lines
259 B
Python
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"],
|
|
)
|