-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (54 loc) · 1.65 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
58
59
60
# SPDX-FileCopyrightText: Copyright contributors to the Software Quality Assurance as a Service (SQAaaS) project <[email protected]>
# SPDX-FileContributor: Pablo Orviz <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-only
# coding: utf-8
from setuptools import find_packages, setup
NAME = "sqaaas_api_server"
VERSION = "3.2.1"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"connexion==2.14.2",
"swagger-ui-bundle==0.0.9",
"PyGithub>=1.53",
"python-jenkins>=1.7.0",
"deepdiff>=5.2.3",
"GitPython>=3.1.17",
]
setup(
name=NAME,
version=VERSION,
description="SQAaaS API",
author="Pablo Orviz",
author_email="[email protected]",
url="https://github.com/eosc-synergy/sqaaas-api-server",
keywords=["OpenAPI", "SQAaaS API"],
install_requires=REQUIRES,
packages=find_packages(),
package_data={
"openapi_server": [
"LICENSE",
"openapi/openapi.yaml",
"templates/Jenkinsfile",
"templates/embed_badge.html",
"templates/commands_script.sh",
"templates/commands_script_im.sh",
"templates/pipeline_assessment.json",
"templates/README",
"templates/jenkins/credentials.xml",
"../etc/sqaaas.ini.sample",
]
},
include_package_data=False,
entry_points={
"console_scripts": ["sqaaas_api_server=openapi_server.__main__:main"]
},
long_description="""\
API for the Software and Service Quality Assurance as a Service (SQAaaS) component.
""",
)