-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
57 lines (55 loc) · 1.9 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
"""
Starlette-OpenTracing
---------------------
This extension provides simple integration of OpenTracing in Starlette applications.
"""
from setuptools import setup
version = open("VERSION").read().strip()
setup(
name="Starlette-OpenTracing",
version=version,
url="http://github.com/acidjunk/starlette-opentracing",
download_url="https://github.com/acidjunk/starlette-opentracing/tarball/" + version,
license="Apache 2.0",
author="René Dohmen",
author_email="[email protected]",
description="OpenTracing support for Starlette and FastApi applications",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
packages=["starlette_opentracing", "tests"],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=["starlette", "opentracing>=2.0,<3"],
extras_require={
"tests": [
"aiocontextvars",
"black",
"flake8",
"flake8-quotes",
"isort",
"mock",
"pre-commit",
"pytest",
"pytest-asyncio",
"pytest-cov",
"requests",
"coveralls",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)