-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (23 loc) · 841 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md")) as f:
long_description = f.read()
requirements = ["types-aiofiles", "aiohttp", "aiofiles"]
setup(
name="zcache",
version="v3.0.5",
packages=find_packages(),
package_data={"zcache": ["py.typed"]},
license="MIT",
author="guangrei",
author_email="myawn@pm.me",
description="Pure typed Python Key Value Database/Cache with abstract storage, plugins and asynchronous support",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="cache key value file json",
url="https://github.com/guangrei/zcache",
install_requires=requirements,
)