update link to upper-constraints.txt
[optf/osdf.git] / setup.py
1 # -*- encoding: utf-8 -*-
2 # -------------------------------------------------------------------------
3 #   Copyright (C) 2020 Wipro Limited.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #
17 # -------------------------------------------------------------------------
18 #
19
20 '''Setup'''
21
22 import setuptools
23
24 setuptools.setup(name='of-osdf',
25       version='1.0',
26       description='Python Distribution Utilities',
27       author='xyz',
28       author_email='xyz@wipro.com',
29       url='https://wiki.onap.org/display/DW/Optimization+Service+Design+Framework',
30       classifiers=[
31                   'Development Status :: 4 - Beta',
32                   'Environment :: ONAP',
33                   'Intended Audience :: Information Technology',
34                   'Intended Audience :: System Administrators',
35                   'License :: OSI Approved :: Apache Software License',
36                   'Operating System :: POSIX :: Linux',
37                   'Programming Language :: Python',
38                   'Programming Language :: Python :: 3'
39                   'Programming Language :: Python :: 3.5'
40                   'Topic :: Communications :: Email',
41                   'Topic :: Office/Business',
42                   'Topic :: Software Development :: Bug Tracking',],
43       keywords=['onap','osdf'],
44       packages=['osdf'],
45       entry_points = {
46         'console_scripts': [
47             'cipher-utility = osdf.cmd.encryptionUtil:main',
48         ],
49       'oslo.config.opts': [
50         'osdf = osdf.opts:list_opts',
51       ],
52       }
53      )