We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b66eeb7 commit 521d4a5Copy full SHA for 521d4a5
setup.py
@@ -2,6 +2,7 @@
2
3
import sys
4
import os
5
+import os.path
6
import warnings
7
8
from distutils.dist import Distribution
@@ -135,10 +136,18 @@ def build_extensions(self):
135
136
libraries=[lib_talib_name],
137
runtime_library_dirs=runtime_lib_dirs)
138
]
139
+
140
+from os import path
141
+this_directory = path.abspath(path.dirname(__file__))
142
+with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
143
+ long_description = f.read()
144
145
setup(
146
name='TA-Lib',
147
version='0.4.20',
148
description='Python wrapper for TA-Lib',
149
+ long_description=long_description,
150
+ long_description_content_type='text/markdown',
151
author='John Benediktsson',
152
author_email='mrjbq7@gmail.com',
153
url='http://github.com/mrjbq7/ta-lib',
0 commit comments