From 5b5c1662a8b0bae9fcb713ac2efd1e6f44e08828 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 29 Jan 2018 16:04:01 +0100 Subject: [PATCH] Added web server static files to the setup --- MANIFEST.in | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 000000000..fb7549b5b --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include platypush/backend/http/static * diff --git a/setup.py b/setup.py index e5ebe1da5..977bbff71 100755 --- a/setup.py +++ b/setup.py @@ -41,6 +41,7 @@ setup( keywords = "pushbullet notifications automation", url = "https://github.com/BlackLight/platypush", packages = find_packages(), + include_package_data = True, entry_points = { 'console_scripts': [ 'platypush=platypush:main',