diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:42:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:42:26 +0000 |
commit | 40fb3928c84896d80cf7549b5e6b17d1262cee64 (patch) | |
tree | 107b8039026ed8d0775f34cccab8a8fcac44b5a0 /setup.py | |
parent | Initial commit. (diff) | |
download | powerline-gitstatus-40fb3928c84896d80cf7549b5e6b17d1262cee64.tar.xz powerline-gitstatus-40fb3928c84896d80cf7549b5e6b17d1262cee64.zip |
Adding upstream version 1.3.2.upstream/1.3.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b4e10d2 --- /dev/null +++ b/setup.py @@ -0,0 +1,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' + ] +) |