-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
66 lines (53 loc) · 1.92 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
58
59
60
61
62
63
64
65
66
import os
import re
import sys
from setuptools import find_packages, setup # type: ignore
if sys.version_info < (3, 6, 0):
raise RuntimeError("aiozipkin does not support Python earlier than 3.6.0")
def read(f: str) -> str:
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
install_requires = ["aiohttp>=3.7.2"]
def read_version() -> str:
regexp = re.compile(r'^__version__\W*=\W*"([\d.abrc]+)"')
init_py = os.path.join(os.path.dirname(__file__), "aiozipkin", "__init__.py")
with open(init_py) as f:
for line in f:
match = regexp.match(line)
if match is not None:
return match.group(1)
else:
msg = "Cannot find version in aiozipkin/__init__.py"
raise RuntimeError(msg)
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX",
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
]
setup(
name="aiozipkin",
version=read_version(),
description=(
"Distributed tracing instrumentation " "for asyncio application with zipkin"
),
long_description="\n\n".join((read("README.rst"), read("CHANGES.rst"))),
classifiers=classifiers,
platforms=["POSIX"],
author="Nikolay Novik",
author_email="nickolainovik@gmail.com",
url="https://github.com/aio-libs/aiozipkin",
download_url="https://pypi.python.org/pypi/aiozipkin",
license="Apache 2",
packages=find_packages(),
python_requires=">=3.6",
install_requires=install_requires,
keywords=["zipkin", "distributed-tracing", "tracing"],
zip_safe=True,
include_package_data=True,
)