This repository has been archived by the owner on Sep 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (40 loc) · 1.58 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
46
47
48
# This file is part of the cpthook library.
#
# cpthook is free software released under the BSD License.
# Please see the LICENSE file included in this distribution for
# terms of use. This LICENSE is also available at
# https://github.com/aelse/cpthook/blob/master/LICENSE
from setuptools import setup
__long_desc__ = """If you use a central repository manager such as gitolite
or gitosis you probably have at least a few repositories using custom git
hooks.
Managing the hooks in all your repositories by hand, is time consuming
and prone to error. If you need to take advantage of the functionality
provided by more than one hook script you are left to do it yourself.
cpthook allows you to run more than one hook in each repo and manage
them all in one location."""
setup(
name='cpthook',
license='BSD',
py_modules=['cpthook'],
scripts=['cpthook'],
version='1.0.2',
data_files=['update-cpthook.sh'],
install_requires=[],
description='Centrally manage hooks for git repositories',
long_description=__long_desc__,
author='Alexander Else',
author_email='[email protected]',
url='https://github.com/aelse/cpthook',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: Other/Proprietary License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Topic :: Software Development",
"Topic :: System :: Systems Administration",
]
)