mirror of
https://github.com/b-ryan/powerline-shell.git
synced 2026-09-10 07:26:28 -04:00
23 lines
576 B
Python
Executable file
23 lines
576 B
Python
Executable file
#!/usr/bin/env python
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(name="powerline-shell",
|
|
version="0.1.0-alpha",
|
|
description="A pretty prompt for your shell",
|
|
author="Buck Ryan",
|
|
url="https://github.com/banga/powerline-shell",
|
|
classifiers=[],
|
|
packages=[
|
|
"powerline_shell",
|
|
"powerline_shell.segments",
|
|
"powerline_shell.themes",
|
|
],
|
|
install_requires=[
|
|
"argparse",
|
|
],
|
|
entry_points="""
|
|
[console_scripts]
|
|
powerline-shell=powerline_shell:main
|
|
""",
|
|
)
|