sysom1/environment/1_sdk/setup_gcache_base.py

19 lines
517 B
Python

import setuptools
setuptools.setup(
name="gcache_base",
version="0.0.1",
author="mingfeng(SunnyQjm)",
author_email="mfeng@linux.alibaba.com",
description="A generic cache base library that defines the basic functions that a generic cache has",
url="",
packages=setuptools.find_packages(),
install_requires=[
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)