Adapt DCAE adapter to work with Acumos Demeter's metadata structure change
[dcaegen2/platform.git] / adapter / acumos / setup.py
1 # ============LICENSE_START====================================================
2 # org.onap.dcae
3 # =============================================================================
4 # Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
5 # =============================================================================
6 # Copyright (c) 2021 highstreet technologies GmbH. All rights reserved.
7 # =============================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #      http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 # ============LICENSE_END======================================================
20
21 from setuptools import setup, find_packages
22
23 setup(
24     name="aoconversion",
25     version="1.0.6-SNAPSHOT",
26     packages=find_packages(exclude=["tests.*", "tests"]),
27     author="Tommy Carpenter, Andrew Gauld",
28     author_email="tommy@research.att.com, agauld@att.com",
29     description="Service to create DCAE artifacts from acumos models",
30     url="",
31     install_requires=["docker>=4.0.0,<5.0.0", "jsonschema", "PyYAML", "requests"],
32     package_data={'aoconversion': ['index.html']},
33     entry_points={
34       "console_scripts": [
35         "acumos-adapter=aoconversion.adapter:adapter"
36       ]
37     }
38 )