Right now a have my packages
variable in setup.py
defined like this:
packages=find_packages(include=['zeption'])
But zeption
has a folder examples
I want to exclude:
zeption/
├── ...
├── setup.py
├── ...
└── zeption
├── ...
├── examples <----- want to exclude
├── ...
How can I do this?