4a094719e0333960e614e1eb1baf297ada59d2d6
[dcaegen2/platform.git] / mod / distributorapi / setup.py
1 # ============LICENSE_START=======================================================
2 # Copyright (c) 2019 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=[
37             "Werkzeug==0.16.1",
38             "flask-restplus"
39             , "Flask-Cors"
40             , "requests"
41             ],
42         zip_safe = False
43         )