Skip to content

Commit

Permalink
Remove concurrent.futures dependency (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
yurishkuro authored and black-adder committed Apr 17, 2018
1 parent b2e1f2e commit 3407404
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@
url='https://github.com/uber-common/opentracing-python-instrumentation',
keywords=['opentracing'],
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
Expand All @@ -24,11 +28,10 @@
platforms='any',
install_requires=[
'future',
'futures;python_version<"3"',
'wrapt',
'tornado>=4.1',
'tornado>=4.1,<5',
'contextlib2',
'opentracing>=1.1,<1.3',
'opentracing>=1.1,<2',
'six',
],
extras_require={
Expand Down

0 comments on commit 3407404

Please sign in to comment.