-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
24 lines (23 loc) · 958 Bytes
/
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
# vim:fileencoding=utf-8:noet:tabstop=4:softtabstop=4:shiftwidth=4:expandtab:
import pathlib
from setuptools import setup
setup(
name = 'powerline-kubernetes',
description = 'A Powerline segment to show Kubernetes context',
long_description = (pathlib.Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
version = '1.2.0',
keywords = 'powerline kubernetes context',
license = 'MIT',
author = 'Vincent De Smet',
author_email = '[email protected]',
url = 'https://github.com/so0k/powerline-kubernetes',
packages = ['powerline_kubernetes'],
install_requires = ['powerline-status', 'kubernetes'],
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Terminals'
]
)