-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (41 loc) · 1.44 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
from setuptools import setup, find_namespace_packages
import os.path
import re
VERSION_RE = re.compile(r"""__version__ = ['"]([-a-z0-9.]+)['"]""")
BASE_PATH = os.path.dirname(__file__)
with open(os.path.join(BASE_PATH, "iofree", "__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()
description = (
"An io-free stream parser "
"which helps implementing network protocols in the `Sans-IO` way"
)
setup(
name="iofree",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
version=version,
author="Yingbo Gu",
author_email="tensiongyb@gmail.com",
maintainer="Yingbo Gu",
maintainer_email="tensiongyb@gmail.com",
url="https://github.com/guyingbo/iofree",
packages=find_namespace_packages(include=["iofree*"]),
python_requires=">=3.6",
classifiers=[
"License :: OSI Approved :: MIT License",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
setup_requires=["pytest-runner"],
tests_require=["pytest", "coverage", "pytest-cov"],
)