-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 934 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
from setuptools import setup, find_namespace_packages
setup(
name="basalam.backbone-redis-cache",
author="Mojtabaa Habibain",
author_email="mojtabaa.hn@gmail.com",
description="Python Utilities & Basalam Micro-Services SDK",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/basalam/backbone-redis-cache",
packages=find_namespace_packages(where='src', include=['basalam.backbone_redis_cache']),
package_dir={'': 'src'},
namespace_packages=["basalam"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
setuptools_git_versioning={"enabled": True},
setup_requires=["setuptools-git-versioning"],
install_requires=[
"redis>=4.4.4",
"aioredis==2.0.1"
]
)