forked from develer-staff/git-externals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (38 loc) · 1.23 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('git_externals/__init__.py') as fp:
exec(fp.read())
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(
name='git-externals',
version=__version__,
description='cli tool to manage git externals',
long_description='Ease the migration from Git to SVN by handling svn externals through a cli tool',
packages=['git_externals'],
install_requires=['click',
'git-svn-clone-externals'],
entry_points={
'console_scripts': [
'git-externals = git_externals.cli:cli',
'svn-externals-info = git_externals.process_externals:main',
],
},
author=__author__,
author_email=__email__,
license='MIT',
classifiers=classifiers,
)