I am currently working on packaging and distributing a CLI app on PyPI, I need the themes directory with all the files and the config.ini to be packaged with the app.py somehow. I'm pretty sure I know how to set up the entry_point and everything but I can't find any resources on how to include the other files, if at all possible.
The app.py code uses the themes and the config for core features, so it is necessary.
What do I need to include in setup.cfg if im building with setuptools?
Any and all help would be greatly appreciated.
This is the directory structure, filenames have been altered from the original.
.
โโโ LICENSE
โโโ README.md
โโโ app.py
โโโ themes
โ โโโ blue.hex
โ โโโ cyan.hex
โ โโโ dark.hex
โ โโโ yellow.hex
โ โโโ red.hex
โ โโโ green.hex
โโโ config.ini