Skip to content

Commit e754a17

Browse files
author
hhsecond
committed
long description
1 parent d047fc3 commit e754a17

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@
22
#!/usr/bin/env python
33
from setuptools import setup, find_packages
44

5-
exec(open('redisai/version.py').read())
5+
exec(open('redisai/version.py', encoding='utf-8').read())
6+
with open('README.md') as f:
7+
long_description = f.read()
8+
69

710
setup(
811
name='redisai',
912
version=__version__, # comes from redisai/version.py
10-
1113
description='RedisAI Python Client',
14+
long_description=long_description,
15+
long_description_content_type='text/markdown',
1216
url='http://github.com/RedisAI/redisai-py',
1317
author='RedisLabs',
1418
author_email='oss@redislabs.com',

0 commit comments

Comments
 (0)