blob: a56cd577787623258a0f18c1e91e0bb5176ab23c [file] [log] [blame]
uwe ottrembka66d91ea2020-08-11 10:50:55 +02001# Copyright 2019-present Open Networking Foundation
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
15from setuptools import setup, find_packages
16
17
18def version():
19 with open('VERSION') as f:
20 return f.read()
21
22
23setup(
24 name='device-management-interface',
25 version=version(),
26 description='Protobuf interface definitions',
27 author='VOLTHA project',
28 author_email='voltha-dev@opencord.org',
Andrea Campanellaadd99442020-10-02 12:02:42 +020029 url='https://gerrit.opencord.org/plugins/gitiles/device-management-interface',
uwe ottrembka66d91ea2020-08-11 10:50:55 +020030 license='Apache Software License',
31 classifiers=[
32 'Development Status :: 5 - Production/Stable',
33 'Intended Audience :: Developers',
34 'License :: OSI Approved :: Apache Software License',
35 'Programming Language :: Python :: 3.6',
36 ],
Andrea Campanellaadd99442020-10-02 12:02:42 +020037 keywords='protobuf device-management-interface voltha',
uwe ottrembka66d91ea2020-08-11 10:50:55 +020038 packages = find_packages(where="python"),
39 package_dir = {"": "python"},
40 install_requires = [
amit.ghoshdd12d882022-07-01 12:32:36 +020041 "googleapis-common-protos==1.56.2"
uwe ottrembka66d91ea2020-08-11 10:50:55 +020042 ],
43 include_package_data=True,
44)