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 c052c70 commit 7713e9eCopy full SHA for 7713e9e
setup.py
@@ -11,9 +11,12 @@
11
NetworkX for generating scaffold networks and scaffold trees.'
12
13
with open('requirements.txt') as f:
14
- install_requires = [l.strip() for l in f]
+ install_requires = [line.strip() for line in f]
15
install_requires.remove('rdkit')
16
17
+with open('README.md', encoding='utf-8') as f:
18
+ long_description = f.read()
19
+
20
setup_requires = ['pytest-runner']
21
tests_require = ['pytest', 'pytest-cov']
22
@@ -27,6 +30,8 @@
27
30
name='ScaffoldGraph',
28
31
version=__version__,
29
32
description=description,
33
+ long_description=long_description,
34
+ long_description_content_type='text/markdown',
35
author='Oliver Scott',
36
author_email='oliver.scott.17@ucl.ac.uk',
37
url=url,
0 commit comments