blob: 056438a2f1758c338efe66b2f94c75b02e1d83f7 [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',
35 'Programming Language :: Python :: 2.7',
36 'Programming Language :: Python :: 3.5',
37 'Programming Language :: Python :: 3.6',
38 'Programming Language :: Python :: 3.7',
39 ],
40 keywords='protobuf voltha',
41 packages = find_packages(where="python"),
42 package_dir = {"": "python"},
43 install_requires = [
44 "googleapis-common-protos~=1.5.6"
45 ],
46 include_package_data=True,
47)