forked from acsone/git-aggregator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.43 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
# -*- coding: utf-8 -*-
# © 2015 ACSONE SA/NV
# License AGPLv3 (http://www.gnu.org/licenses/agpl-3.0-standalone.html)
import setuptools
setuptools.setup(
name='git-aggregator',
use_scm_version=True,
description='A library to aggregate git branches from different remotes '
'into a consolidated one',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: '
'GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
"Topic :: Utilities",
"Topic :: System :: Shells",
],
license="AGPLv3+",
author='ACSONE SA/NV',
author_email='[email protected]',
url='http://github.com/acsone/git-aggregator',
packages=[
'git_aggregator',
],
setup_requires=[
'setuptools_scm',
],
install_requires=[
'kaptan',
'argcomplete',
'colorama',
'requests',
],
entry_points=dict(
console_scripts=['gitaggregate=git_aggregator.main:main']),
test_suite='tests',
)