forked from b-ryan/powerline-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (31 loc) · 886 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
25
26
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="powerline-shell",
version="0.7.0",
description="A pretty prompt for your shell",
author="Buck Ryan",
author_email="[email protected]",
license="MIT",
url="https://github.com/b-ryan/powerline-shell",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
packages=[
"powerline_shell",
"powerline_shell.segments",
"powerline_shell.themes",
],
install_requires=[
"argparse",
],
entry_points="""
[console_scripts]
powerline-shell=powerline_shell:main
""",
)