-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (52 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
from gitlabrc import __version__
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
# ==============================================================================
# CONSTANTS
# ==============================================================================
NAME = "gitlabrc"
DESCRIPTION = "GitlabRC is a python CLI that help you to clone projects inside namespace (groups) in Gitlab"
URL = "https://github.com/lpmatos/gitlabrc"
EMAIL = "[email protected]"
AUTHOR = "Lucca Pessoa da Silva Matos"
REQUIRES_PYTHON = ">=3.6.0"
VERSION = __version__
REQUIRED = [
"art",
"tqdm",
"GitPython",
"coloredlogs",
"python-gitlab",
"python-json-logger"
]
# ==============================================================================
# BUILD PACKAGE
# ==============================================================================
setup(
name = "GitLabRC",
version = VERSION,
description = DESCRIPTION,
long_description = DESCRIPTION,
author = AUTHOR,
author_email = EMAIL,
python_requires = REQUIRES_PYTHON,
url=URL,
packages = find_packages(include=[NAME], exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
install_requires = REQUIRED,
include_package_data = True,
license = "MIT license",
keywords = [
"git",
"cli",
"python",
"gitlab",
"gitlab-cli"
],
entry_points = {
"console_scripts" : [
f"{NAME}={NAME}.cli:main",
]
},
zip_safe = False,
)