b2dd1a29e7c4e8f60df6417fe0fe3351a274e2d0
[dcaegen2/platform.git] / oti / event-handler / setup.py
1 # ================================================================================
2 # Copyright (c) 2019-2020 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
17 """DCAE-Controller dti_handler"""
18
19 from setuptools import setup
20
21 setup(
22     name='otihandler',
23     description='DCAE-Controller OTI Handler',
24     version="1.0.0",
25     author=[''],
26     packages=['otihandler'],
27     zip_safe=False,
28     install_requires=[
29         "CherryPy>=18.0.0",
30         "docker==4.1.0",
31         "enum34>=1.1.6",
32         "kubernetes==4.0.0",
33         "requests>=2.18.4,<3.0.0",
34         "SQLAlchemy==1.3.6",
35         "psycopg2-binary==2.8.4",
36         "pyOpenSSL==19.1.0",
37         "pycrypto==2.6.1",
38         "uuid==1.30"
39     ],
40     keywords='oti dcae controller',
41     classifiers=[
42         'Development Status :: 4 - Beta',
43         'Intended Audience :: Developers',
44         'Programming Language :: Python :: 3.6'
45     ]
46 )