From: Raphael Michel Date: Thu, 25 Oct 2018 19:27:17 +0000 (+0200) Subject: setup.py: include_package_data X-Git-Tag: 1.0.0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c19727fc59906d3edf98ba8fe87a6721e93f520c;p=thirdparty%2Fpython-drafthorse.git setup.py: include_package_data --- diff --git a/setup.py b/setup.py index be93887..00d3421 100644 --- a/setup.py +++ b/setup.py @@ -39,4 +39,5 @@ setup( ] + (['isoweek'] if sys.version_info < (3, 6) else []), packages=find_packages(include=['drafthorse', 'drafthorse.*']), + include_package_data=True, )