blob: 55dbaf3f344539556e89f648dfa6523818da0ffc [file] [log] [blame]
alex_sh62fd5be2017-08-24 11:44:59 -04001# ================================================================================
Lusheng Jicc307002018-02-12 11:04:54 -05002# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
alex_sh62fd5be2017-08-24 11:44:59 -04003# ================================================================================
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# ECOMP is a trademark and service mark of AT&T Intellectual Property.
18
Alex Shatov90f21052018-01-10 11:39:32 -050019"""setup.py is used for package build and distribution"""
20
Alex Shatov22008942017-09-21 14:11:20 -040021from setuptools import setup, find_packages
alex_sh62fd5be2017-08-24 11:44:59 -040022
23setup(
Alex Shatov22008942017-09-21 14:11:20 -040024 name='onap-dcae-dcaepolicy-lib',
alex_sh62fd5be2017-08-24 11:44:59 -040025 description='lib of policy decorators to be used by cloudify plugins of dcae controller',
Alex Shatovb73f81e2018-03-23 14:34:34 -040026 version="2.3.0",
alex_sh62fd5be2017-08-24 11:44:59 -040027 author='Alex Shatov',
Alex Shatov22008942017-09-21 14:11:20 -040028 author_email="alexs@att.com",
Tommy Carpenterf3f90e02017-09-20 21:01:20 -040029 license='Apache 2',
Alex Shatov22008942017-09-21 14:11:20 -040030 packages=find_packages(),
alex_sh62fd5be2017-08-24 11:44:59 -040031 install_requires=[
alex_sh62fd5be2017-08-24 11:44:59 -040032 ],
Alex Shatov22008942017-09-21 14:11:20 -040033 keywords='onap policy dcae controller cloudify plugin',
alex_sh62fd5be2017-08-24 11:44:59 -040034 classifiers=[
Alex Shatov22008942017-09-21 14:11:20 -040035 'Intended Audience :: Telecommunications Industry',
alex_sh62fd5be2017-08-24 11:44:59 -040036 'Programming Language :: Python :: 2.7'
37 ]
38)