1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#!/usr/bin/python
import os
from setuptools import find_packages
from setuptools import setup
__version__ = '1.2.8'
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
setup(
name='py_zipkin',
version=__version__,
provides=["py_zipkin"],
author='Yelp, Inc.',
author_email='opensource+py-zipkin@yelp.com',
license='Copyright Yelp 2019',
url="https://github.com/Yelp/py_zipkin",
description='Library for using Zipkin in Python.',
long_description='\n\n'.join((read('README.md'), read('CHANGELOG.rst'))),
long_description_content_type="text/markdown",
packages=find_packages(exclude=('tests*', 'testing*', 'tools*')),
package_data={
'py_zipkin': ['py.typed'],
'py_zipkin.encoding.protobuf': ['*.pyi'],
},
python_requires='>=3.7',
install_requires=[
'typing-extensions>=3.10.0.0',
],
extras_require={
'protobuf': 'protobuf >= 3.12.4',
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)
|