Skip to content

Commit a07335d

Browse files
committed
Include readme in package metadata
1 parent a4db7db commit a07335d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22

33
from nbval._version import __version__
44

5+
with open('README.md') as f:
6+
readme = f.read()
7+
58
setup(
69
name="nbval",
710
version=__version__,
811
author="Laslett, Cortes, Fauske, Kluyver, Pepper, Fangohr",
912
description='A py.test plugin to validate Jupyter notebooks',
13+
long_description=readme,
14+
long_description_content_type="text/markdown",
1015
packages = ['nbval'],
1116
url='https://github.com/computationalmodelling/nbval',
1217
# the following makes a plugin available to pytest

0 commit comments

Comments
 (0)