-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 775 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import os
from setuptools import setup, find_packages
requires = [
'kubernetes==7.0.0',
]
setup(
name='app',
version='1.0',
description='Proxy a specified port to a specified pod (single node service)',
classifiers=[
'Programming Language :: Python',
'Framework :: Pyramid',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
author='Colin Chartier',
author_email='colin@kubenow.com',
url='https://kubenow.com',
keywords='build ci deployment kubernetes',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points={
'console_scripts': [
'entrypoint = app.main:main',
],
},
)