forked from collective/git-svn-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.31 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
from setuptools import setup, find_packages
version = '1.0dev'
setup(name='git-svn-helpers',
version=version,
description="Command-line tools to make git-svn simple",
long_description = (
open('README.rst').read()
+ '\n' +
'Change history\n'
'**************\n'
+ '\n' +
open('HISTORY.txt').read()
+ '\n' +
'Download\n'
'********\n'),
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Version Control',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
],
keywords='git svn',
author='Tom Lazar',
author_email='tom@tomster.org',
url='http://github.com/collective/git-svn-helpers',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=False,
zip_safe=False,
test_suite='gitsvnhelpers.tests',
install_requires=[
# -*- Extra requirements: -*-
"jarn.mkrelease",
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
gitify=gitsvnhelpers.gitify:gitify
""",
)