blob: 1091a677c5beac8d6bb3a7564d10cece32d07c73 [file] [log] [blame]
Zack Williams52209662019-02-07 10:15:31 -07001# 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='voltha-protos',
25 version=version(),
26 description='Protobuf interface definitions',
27 author='VOLTHA project',
28 author_email='voltha-dev@opencord.org',
29 url='https://gerrit.opencord.org/gitweb?p=voltha-protos.git',
30 license='Apache Software License',
31 classifiers=[
32 'Development Status :: 5 - Production/Stable',
33 'Intended Audience :: Developers',
34 'License :: OSI Approved :: Apache Software License',
Zack Williams52209662019-02-07 10:15:31 -070035 'Programming Language :: Python :: 3.5',
36 'Programming Language :: Python :: 3.6',
37 'Programming Language :: Python :: 3.7',
38 ],
39 keywords='protobuf voltha',
40 packages = find_packages(where="python"),
41 package_dir = {"": "python"},
42 install_requires = [
khenaidoo5fc5cea2021-08-11 17:39:16 -040043 "grpcio==1.39.0",
44 "protobuf==3.17.3",
45 "grpcio-tools==1.39.0",
46 "googleapis-common-protos==1.52.0"
Zack Williams52209662019-02-07 10:15:31 -070047 ],
48 include_package_data=True,
49)