Renamed package name to onapsmsclient
[aaf/sms.git] / sms-client / python / onapsmsclient / setup.py
1 # Copyright 2018 Intel Corporation, Inc
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 from setuptools import setup, find_packages
17
18 setup(
19
20     name='onapsmsclient',
21     keywords=("secret", "consul", "onap"),
22     description="ONAP python SMS client library",
23     long_description="python-package onapsmsclient client library for using"
24                      " Secret Management Service (SMS) inside ONAP. Refer "
25                      "https://wiki.onap.org/display/DW/Secret+Management+Service for more details.",
26     version="0.0.1",
27     url="https://gerrit.onap.org/r/gitweb?p=aaf%2Fsms.git;a=summary",
28     license="Apache 2",
29     author="Kiran Kamineni",
30     author_email='kiran.k.kamineni@intel.com',
31     packages=find_packages(),
32     platforms=["all"],
33     install_requires=[
34         'requests>=2.7.0',
35     ],
36     classifiers=[
37         "Intended Audience :: Developers",
38         "Programming Language :: Python :: 2.7"
39     ]
40 )