forked from zcmarine/powerkube
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 loc) · 1.05 KB
/
setup.py
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
from setuptools import setup
INSTALL_REQUIRES = [
'kubernetes-py',
'powerline-status',
]
# Heavily inspired by the powerline-kubernetes library written by Vincent De Smet
# ([email protected]) and located at https://github.com/so0k/powerline-kubernetes
setup(
name='powerkube',
version='0.1.3',
description='A powerline segment to show kubernetes context items, with toggling and alert color functionality',
author='Zach Marine',
author_email='[email protected]',
url='https://github.com/zcmarine/powerkube',
download_url='https://github.com/zcmarine/powerkube/tarball/0.1.3',
packages=['powerkube'],
install_requires=INSTALL_REQUIRES,
license='Copyright',
keywords='powerline kubernetes k8s context segment',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Terminals'
]
)