I have a development package set up like the following:
\polygonselector
\polygonselector
__init__.py
\notebooks
PolygonSelector.ipynb
.gitignore
LICENSE
MANIFEST.in
README.md
setup.py
I am attempting to closely follow these instructions and the information in this question and this question in order to include a Jupyter notebook (inside the notebooks
directory) file as part of a python package. However, I haven't been able to succeed.
The MANIFEST.in file looks like this:
recursive-include notebooks *
I also have the include_package_data=True
line in my setup.py
file.
Here is the repository link; I've already made a dozen commits trying to get this to work, including trying to have the notebooks
directory at the top of the directory structure.
But no matter what I do, when I pip install from the repository, the notebooks
directory is not included in the Lib\site-packages directory
.