setup.py 1.8 KB

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