nextcloud / news-updater

:newspaper: Fast, parallel feed updater for the News app; written in Python
GNU General Public License v3.0
107 stars 23 forks source link

Exclude tests from being installed #31

Closed dvzrv closed 3 years ago

dvzrv commented 3 years ago

setup.py: Add the exclude parameter to find_packages() to exclude the tests/ directory and its subdirectories. The tests/ directory would otherwise be installed top-level to site-packages and conflict with other packages with the same defect.

Fixes #30

BernhardPosselt commented 3 years ago

Thanks!