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 +)