from setuptools import setup, find_packages
LONGDOC = """
To be completed
"""
PACKAGES = find_packages()
def setup_package():
setup(name='wbn',
version='3.10',
description='knowledge matcher',
long_description=LONGDOC,
packages=PACKAGES
)
if __name__ == "__main__":
setup_package()
When I do:
pip install .
I can see that in my virtual environment's site-packages directory 'wbn', all python source codes are installed correctly, but all resource files are not. So I added this file to MANIFEST.in for example:
recursive-include nl/cli *.yml
I hope this will add all *.yml files recursively to the 'wbn' library's installation directory, but it didn't.
What's wrong with my packaging?