From e280ac67a93958607557f03997c67b17d42f1cd7 Mon Sep 17 00:00:00 2001 From: josh Date: Mon, 17 Aug 2015 12:48:41 -0700 Subject: [PATCH] Added web/templates and web/static/css to setup.py and MANIFEST.in. Sulley was previously failing as an installed package due to missing templates. --- MANIFEST.in | 2 ++ setup.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..f605b0b --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include web/templates/* +include web/static/css* diff --git a/setup.py b/setup.py index 1161a97..e8be5ec 100644 --- a/setup.py +++ b/setup.py @@ -20,5 +20,6 @@ 'utils': './utils', 'web': './web' }, + package_data={'web': ['templates/*', 'static/css/*']}, install_requires=['pydot2==1.0.33', 'tornado==4.0.2', 'Flask==0.10.1'] -) \ No newline at end of file +)