forked from djl/vcprompt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (39 loc) · 1.08 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
vcprompt
========
vcprompt is a small utility for displaying information about
version control repositories in your prompt (or anywhere).
Features
--------
vcprompt is aware of the following version control systems:
- Bazaar
- CVS
- Darcs
- Fossil
- Git
- Mercurial
- Subversion
"""
import commands
from distutils.core import setup
setup(
name='vcprompt',
version=commands.getoutput('./bin/vcprompt --version').split()[-1],
author='David Logie',
author_email='[email protected]',
url='http://github.com/djl/vcprompt',
scripts=['bin/vcprompt'],
license='BSD',
description='Version control information in your prompt (or anywhere!).',
data_files=[('man/man1', ['man/vcprompt.1']),
('man/man5', ['man/vcprompt.5'])],
long_description=__doc__,
classifiers=[
'Development Status :: 3 - Alpha'
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Version Control',
],
)