-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
47 lines (42 loc) · 1.68 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='mu_repo',
version='1.9.0', # Note: update here and in mu_repo.__init__
description = 'Tool to work with multiple git repositories',
long_description = '''mu-repo enables dealing with multiple git and provides features such as:
* Cloning multiple repositories
* Creating groups of repositories
* Diffing changes for edition with WinMerge or meld.
* Checking out branches by partial name matching.
* Preview incoming changes on current branch.
* Shortcuts for common git operations.
* Open Url for opening the browser to create pull requests over multiple repositories.
* Run **arbitrary commands** on registered repositories.
See: http://fabioz.github.io/mu-repo for more information.
''',
long_description_content_type="text/markdown",
author='Fabio Zadrozny',
url='http://fabioz.github.io/mu-repo',
# scripts=['mu'], -- entry_points:console_scripts should do what we want.
packages=['mu_repo'],
classifiers=[
'Development Status :: 6 - Mature',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Version Control',
],
entry_points = {
'console_scripts': [
'mu = mu_repo:main_entry_point',
],
},
)
# For releasing, change version, create tag and push (deploy should be automatic).
# git tag mu_repo_1_8_2
# git push --tags