Skip to content

Commit 7713e9e

Browse files
author
Oliver Scott
committed
Updated setup.py (long description)
1 parent c052c70 commit 7713e9e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@
1111
NetworkX for generating scaffold networks and scaffold trees.'
1212

1313
with open('requirements.txt') as f:
14-
install_requires = [l.strip() for l in f]
14+
install_requires = [line.strip() for line in f]
1515
install_requires.remove('rdkit')
1616

17+
with open('README.md', encoding='utf-8') as f:
18+
long_description = f.read()
19+
1720
setup_requires = ['pytest-runner']
1821
tests_require = ['pytest', 'pytest-cov']
1922

@@ -27,6 +30,8 @@
2730
name='ScaffoldGraph',
2831
version=__version__,
2932
description=description,
33+
long_description=long_description,
34+
long_description_content_type='text/markdown',
3035
author='Oliver Scott',
3136
author_email='oliver.scott.17@ucl.ac.uk',
3237
url=url,

0 commit comments

Comments
 (0)