-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
31 lines (29 loc) · 1.01 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
setup(
name='swagger_zipkin',
version="0.5.1",
provides=["swagger_zipkin"],
author='Yelp, Inc.',
author_email='[email protected]',
license='Copyright Yelp 2016',
url="https://github.com/Yelp/swagger_zipkin",
description='Zipkin decorators for swagger clients - swagger-py and bravado.',
packages=find_packages(exclude=['tests*']),
python_requires=">=3.7",
install_requires=[
'py_zipkin>=0.10.1',
],
keywords='zipkin',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)