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 63d90c7 commit 4279fa1Copy full SHA for 4279fa1
setup.py
@@ -5,6 +5,12 @@
5
from os import path
6
import os
7
8
+# read the contents of our README file
9
+this_directory = path.abspath(path.dirname(__file__))
10
+with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
11
+ long_description = f.read()
12
+
13
14
version_path = os.path.join('pyganja', '_version.py')
15
exec(open(version_path).read())
16
@@ -36,4 +42,6 @@ def run(self):
36
42
install_requires = [
37
43
'IPython'
38
44
],
45
+ long_description=long_description,
46
+ long_description_content_type='text/markdown'
39
47
)
0 commit comments