-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 781 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# vim:fileencoding=utf-8:noet
from setuptools import setup
setup(
name = 'powerline-docker',
description = 'A Powerline segment for showing Docker container statuses',
version = '1.0.4',
keywords = 'powerline docker container status',
license = 'MIT',
author = 'Adrian Moreno Martinez',
author_email = 'adrian@morenomartinez.com',
url = 'https://github.com/adrianmo/powerline-docker',
packages = ['powerline_docker'],
install_requires = ['powerline-status', 'docker-py'],
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Terminals'
]
)