forked from aio-libs/aiocache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (35 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (35 loc) · 1.16 KB
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
import re
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "aiocache/_version.py")) as fp:
try:
version = re.findall(r"^__version__ = \"([^']+)\"\r?$", fp.read(), re.M)[0]
except IndexError:
raise RuntimeError("Unable to determine version.")
with open("README.rst", encoding="utf8") as f:
readme = f.read()
setup(
name="aiocache",
version=version,
author="Manuel Miranda",
url="https://github.com/aio-libs/aiocache",
author_email="manu.mirandad@gmail.com",
description="multi backend asyncio cache",
long_description=readme,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: AsyncIO",
],
packages=find_packages(),
install_requires=None,
extras_require={
"redis": ["redis>=4.2.0"],
"memcached": ["aiomcache>=0.5.2"],
"msgpack": ["msgpack>=0.5.5"],
},
include_package_data=True,
)