|
| 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 | + |
| 15 | +from setuptools import find_packages |
| 16 | +from setuptools import setup |
| 17 | +from version import __version__ |
| 18 | + |
| 19 | +setup( |
| 20 | + name='opencensus-ext-ocagent', |
| 21 | + version=__version__, # noqa |
| 22 | + author='OpenCensus Authors', |
| 23 | + |
| 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 OC-Agent Trace Exporter', |
| 39 | + include_package_data=True, |
| 40 | + long_description=open('README.rst').read(), |
| 41 | + install_requires=[ |
| 42 | + 'grpcio >= 1.0.0, < 2.0.0', |
| 43 | + 'opencensus >= 0.2.dev0, < 1.0.0', |
| 44 | + ], |
| 45 | + extras_require={}, |
| 46 | + license='Apache-2.0', |
| 47 | + packages=find_packages(exclude=('tests',)), |
| 48 | + namespace_packages=[], |
| 49 | + url='https://github.com/census-instrumentation/opencensus-python/tree/master/contrib/opencensus-ext-ocagent', |
| 50 | + zip_safe=False, |
| 51 | +) |
0 commit comments