This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 336
/
setup.py
63 lines (55 loc) · 1.91 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
import os.path
import re
from setuptools import find_packages, setup
def read(*parts):
with open(os.path.join(*parts)) as f:
return f.read().strip()
def read_version():
regexp = re.compile(r"^__version__\W*=\W*\"([\d.abrc]+)\"")
init_py = os.path.join(os.path.dirname(__file__), "aioredis", "__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)
raise RuntimeError(f"Cannot find version in {init_py}")
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: POSIX",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Framework :: AsyncIO",
]
setup(
name="aioredis",
version=read_version(),
description="asyncio (PEP 3156) Redis support",
long_description="\n\n".join((read("README.md"), read("CHANGELOG.md"))),
long_description_content_type="text/markdown",
classifiers=classifiers,
platforms=["POSIX"],
url="https://github.com/aio-libs/aioredis-py",
license="MIT",
packages=find_packages(exclude=["tests"]),
install_requires=[
"async-timeout",
"typing-extensions",
],
extras_require={
"hiredis": 'hiredis>=1.0; implementation_name=="cpython"',
},
package_data={"aioredis": ["py.typed"]},
python_requires=">=3.6",
include_package_data=True,
)