We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d047fc3 commit e754a17Copy full SHA for e754a17
setup.py
@@ -2,13 +2,17 @@
2
#!/usr/bin/env python
3
from setuptools import setup, find_packages
4
5
-exec(open('redisai/version.py').read())
+exec(open('redisai/version.py', encoding='utf-8').read())
6
+with open('README.md') as f:
7
+ long_description = f.read()
8
+
9
10
setup(
11
name='redisai',
12
version=__version__, # comes from redisai/version.py
-
13
description='RedisAI Python Client',
14
+ long_description=long_description,
15
+ long_description_content_type='text/markdown',
16
url='http://github.com/RedisAI/redisai-py',
17
author='RedisLabs',
18
author_email='oss@redislabs.com',
0 commit comments