forked from aio-libs/aiocache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.15 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
import re
from pathlib import Path
from setuptools import setup
p = Path(__file__).with_name("aiocache") / "__init__.py"
try:
version = re.findall(r"^__version__ = \"([^']+)\"\r?$", p.read_text(), re.M)[0]
except IndexError:
raise RuntimeError("Unable to determine version.")
readme = Path(__file__).with_name("README.rst").read_text()
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: AsyncIO",
],
packages=("aiocache",),
install_requires=None,
extras_require={
"redis": ["redis>=4.2.0"],
"memcached": ["aiomcache>=0.5.2"],
"msgpack": ["msgpack>=0.5.5"],
},
include_package_data=True,
)