summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: b4e10d2ebdd60e523db2ac39c86d342e8d61b41f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# vim:fileencoding=utf-8:noet

from setuptools import setup

setup(
    name         = 'powerline-gitstatus',
    description  = 'A Powerline segment for showing the status of a Git working copy',
    version      = '1.3.1',
    keywords     = 'powerline git status prompt',
    license      = 'MIT',
    author       = 'Jasper N. Brouwer',
    author_email = 'jasper@nerdsweide.nl',
    url          = 'https://github.com/jaspernbrouwer/powerline-gitstatus',
    packages     = ['powerline_gitstatus'],
    classifiers  = [
        'Environment :: Console',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Topic :: Terminals'
    ]
)