1# Copyright 2019, OpenCensus Authors 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 find_packages 16from setuptools import setup 17from version import __version__ 18 19setup( 20 name='opencensus-proto', 21 version=__version__, # noqa 22 author='OpenCensus Authors', 23 author_email='census-developers@googlegroups.com', 24 classifiers=[ 25 'Intended Audience :: Developers', 26 'Development Status :: 3 - Alpha', 27 'Intended Audience :: Developers', 28 'License :: OSI Approved :: Apache Software License', 29 'Programming Language :: Python', 30 'Programming Language :: Python :: 2', 31 'Programming Language :: Python :: 2.7', 32 'Programming Language :: Python :: 3', 33 'Programming Language :: Python :: 3.4', 34 'Programming Language :: Python :: 3.5', 35 'Programming Language :: Python :: 3.6', 36 'Programming Language :: Python :: 3.7', 37 ], 38 description='OpenCensus Proto', 39 include_package_data=True, 40 long_description=open('README.rst').read(), 41 install_requires=[ 42 'grpcio >= 1.0.0, < 2.0.0', 43 ], 44 extras_require={}, 45 license='Apache-2.0', 46 packages=find_packages(), 47 namespace_packages=[], 48 url='https://github.com/census-instrumentation/opencensus-proto/tree/master/gen-python', 49 zip_safe=False, 50) 51