From df5eb1bfccb695b0353b839c17ad881b7cf364cc Mon Sep 17 00:00:00 2001 From: Unrud Date: Wed, 29 Aug 2018 16:39:26 +0200 Subject: [PATCH] include all packages --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 532c7e1..13cc078 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ For further information, please visit the `Radicale Website import sys -from setuptools import setup +from setuptools import find_packages, setup # When the version is updated, a new section in the NEWS.md file must be # added too. @@ -66,7 +66,8 @@ setup( "Radicale-%s.tar.gz" % VERSION), license="GNU GPL v3", platforms="Any", - packages=["radicale"], + packages=find_packages( + exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), package_data={"radicale": WEB_FILES}, entry_points={"console_scripts": ["radicale = radicale.__main__:run"]}, install_requires=["vobject>=0.9.6", "python-dateutil>=2.7.3"],