-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (41 loc) · 1.46 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
from setuptools import setup, find_packages
import os.path
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '2.0a8'
setup(name='gitctl',
version=version,
description="A particular Git workflow implementation with a "
"development/staging/production code-flow model and support "
"for multiple repositories as part of a larger project.",
long_description=read('README.rst'),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Version Control',
'Topic :: Software Development :: Build Tools',
], # Get strings from http://pypi.python.org/pypi?:action=list_classifiers
keywords='git workflow',
author='Kai Lautaportti',
author_email='[email protected]',
url='http://github.com/dokai/gitctl',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
'setuptools',
'argparse',
'GitPython==0.1.7',
'mock',
],
test_suite='gitctl.tests.test_suite',
entry_points="""
# -*- Entry points: -*-
[console_scripts]
gitctl = gitctl:main
""",
)