How can I make pip install package data (a config file)?
问题 I have a package called clana (Github, PyPI) with the following structure: . ├── clana │ ├── cli.py │ ├── config.yaml │ ├── __init__.py │ ├── utils.py │ └── visualize_predictions.py ├── docs/ ├── setup.cfg ├── setup.py ├── tests/ └── tox.ini The setup.py looks like this: from setuptools import find_packages from setuptools import setup requires_tests = [...] install_requires = [...] config = { "name": "clana", "version": "0.3.6", "author": "Martin Thoma", "author_email": "info@martin-thoma.de