-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 1.01 KB
/
setup.py
File metadata and controls
35 lines (34 loc) · 1.01 KB
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
from setuptools import setup
setup(
name='python-examples',
version='0.0.1.dev0',
author='The OpenTracing Authors',
author_email='info@opentracing.io',
license='Apache License 2.0',
url='https://github.com/opentracing-contrib/python-examples',
keywords=['python', 'opentracing'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache License 2.0',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development',
],
packages=['tests'],
platforms='any',
install_requires=[
'basictracer==3.0.0rc1',
'six>=1.10.0,<2.0',
'futures',
'tornado',
'gevent==1.2',
],
extras_require={
'tests': [
'flake8<3', # https://github.com/zheller/flake8-quotes/issues/29
'flake8-quotes',
'pytest>=2.7,<3',
]
},
)