-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (30 loc) · 1.16 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
from zipkin import __version__
from setuptools import find_packages, setup
setup(
name='zipkin',
version=__version__,
description='python api for sending data to Zipkin',
author='Zoltan Nagy, Zsolt Dollenstein',
author_email='zoltan.nagy@prezi.com, zsolt.dollenstein@prezi.com',
url='https://github.com/prezi/python-zipkin',
packages=find_packages(),
license='Apache2',
keywords='zipkin python',
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: Freely Distributable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['thrift >= 0.9.1'],
tests_require=['mock >= 1.0', 'unittest2 >= 0.5.1', 'pep8 >= 1.6.2'],
test_suite='zipkin.tests',
)