codecoverage improvement
[dcaegen2/platform.git] / mod / distributorapi / setup.py
1 # ============LICENSE_START=======================================================
2 # Copyright (c) 2019-2022 AT&T Intellectual Property. All rights reserved.
3 # ================================================================================
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 # ============LICENSE_END=========================================================
16 import os
17 from setuptools import setup, find_packages
18
19 # extract __version__ from version file. importing distributor will lead to install failures
20 setup_dir = os.path.dirname(__file__)
21 with open(os.path.join(setup_dir, "distributor", "version.py")) as file:
22     globals_dict = dict()
23     exec(file.read(), globals_dict)
24     __version__ = globals_dict["__version__"]
25
26 setup(
27     name="distributor-api",
28     version=__version__,
29     packages=find_packages(),
30     author="Michael Hwang",
31     description=("API that manages distribution targets"),
32     entry_points="""
33         [console_scripts]
34         start-distributor-api=distributor.http:start_http_server
35         """,
36     install_requires=["Werkzeug==0.16.1", "flask-restplus", "Flask-Cors", "requests", "MarkupSafe==2.0.1"],
37     zip_safe=False,
38 )