-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 667 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (20 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from os.path import dirname, join
from setuptools import find_packages, setup
from fastapi_cache.version import __author__, __version__
setup(
name='fastapi-cache',
version=__version__,
description='FastAPI simple cache',
author=__author__,
url='https://github.com/comeuplater/fastapi_cache',
packages=find_packages(exclude=('tests',)),
long_description=open(join(dirname(__file__), 'README.md')).read(),
long_description_content_type='text/markdown',
license='MIT License',
keywords=[
'redis', 'aioredis', 'asyncio', 'fastapi', 'starlette', 'cache'
],
install_requires=[
'aioredis==1.3.1',
],
)