-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (43 loc) · 1.55 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
import re
VERSION_RE = re.compile(r"""__version__ = ['"]([0-9.]+)['"]""")
BASE_PATH = os.path.dirname(__file__)
with open(os.path.join(BASE_PATH, "aiofluent", "__init__.py")) as f:
try:
version = VERSION_RE.search(f.read()).group(1)
except IndexError:
raise RuntimeError("Unable to determine version.")
with open(os.path.join(BASE_PATH, "README.md")) as readme:
long_description = readme.read()
setup(
name="aiofluent-python",
description="asynchronous fluentd client libary",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
version=version,
author="Yingbo Gu",
author_email="[email protected]",
maintainer="Yingbo Gu",
maintainer_email="[email protected]",
url="https://github.com/guyingbo/aiofluent",
packages=["aiofluent"],
python_requires=">=3.5.3",
install_requires=["msgpack>=0.5.2", "async_timeout>=2.0.0"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
],
setup_requires=["pytest-runner"],
tests_require=["pytest", "coverage", "pytest-cov", "pytest-asyncio"],
)