Zack Williams | 5220966 | 2019-02-07 10:15:31 -0700 | [diff] [blame] | 1 | # 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 | |
| 15 | from setuptools import setup, find_packages |
| 16 | |
| 17 | |
| 18 | def version(): |
| 19 | with open('VERSION') as f: |
| 20 | return f.read() |
| 21 | |
| 22 | |
| 23 | setup( |
| 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 Williams | 5220966 | 2019-02-07 10:15:31 -0700 | [diff] [blame] | 35 | '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 = [ |
khenaidoo | 5fc5cea | 2021-08-11 17:39:16 -0400 | [diff] [blame] | 43 | "grpcio==1.39.0", |
| 44 | "protobuf==3.17.3", |
| 45 | "grpcio-tools==1.39.0", |
| 46 | "googleapis-common-protos==1.52.0" |
Zack Williams | 5220966 | 2019-02-07 10:15:31 -0700 | [diff] [blame] | 47 | ], |
| 48 | include_package_data=True, |
| 49 | ) |