-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 790 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 790 Bytes
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
from setuptools import setup
setup(
name = "repo-sync",
version = "0.2.6",
author = "makefu",
author_email = "github@syntax-fehler.de",
description = ("Sync remotes to other remotes."),
license = "MIT",
keywords = " repo sync",
url = "https://github.com/makefu/repo-sync",
packages = ['reposync'],
long_description = open('README.md').read(),
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
entry_points = {
'console_scripts': ['repo-sync = reposync.cli:main'],
},
install_requires = [
'GitPython>=1.0.1',
'docopt',
]
)