Skip to content

Commit

Permalink
fix location of README
Browse files Browse the repository at this point in the history
  • Loading branch information
parmentelat committed Jun 3, 2020
1 parent df8570a commit 43748be
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion classic/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
'notebook>=5.5.0',
]

with open('README.md') as readme:
from pathlib import Path

# README.md is one step up in the sources tree
with open('../README.md') as readme:
README = readme.read()

# Enable the nbextension (like jupyter nbextension enable --sys-prefix)
Expand Down

0 comments on commit 43748be

Please sign in to comment.