Skip to content

Commit e71f2b4

Browse files
committed
changed setup w readme.md
1 parent c168705 commit e71f2b4

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
from setuptools import setup, find_packages
22

3-
__version__ = '0.0.2'
3+
__version__ = '0.0.3'
4+
5+
with open("README.md", "r") as f:
6+
long_description = f.read()
47

58
setup(
69
name='reactome2py',
@@ -21,4 +24,7 @@
2124
'pandas': ["pandas==0.24.2"],
2225
'json': ["json5==0.8.4"],
2326
},
24-
tests_require=['pytest'])
27+
tests_require=['pytest'],
28+
long_description=long_description,
29+
long_description_content_type='text/markdown',
30+
)

0 commit comments

Comments
 (0)