forked from opentracing-contrib/python-flask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.21 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.21 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
36
37
38
39
from setuptools import setup
'''
Flask-OpenTracing
-----------------
This extension provides simple integration of OpenTracing in Flask applications.
'''
version = open('VERSION').read()
setup(
name='Flask-OpenTracing',
version=version,
url='http://github.com/opentracing-contrib/python-flask',
download_url='https://github.com/opentracing-contrib/python-flask/tarball/'+version,
license='BSD',
author='Kathy Camenzind',
author_email='kcamenzind@lightstep.com',
description='OpenTracing support for Flask applications',
long_description=open('README.rst').read(),
packages=['flask_opentracing', 'tests'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'opentracing'
],
tests_require=['pytest'],
setup_requires=['pytest-runner'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)