Skip to content

Commit e280ac6

Browse files
committed
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.
1 parent 0911500 commit e280ac6

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include web/templates/*
2+
include web/static/css*

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@
2020
'utils': './utils',
2121
'web': './web'
2222
},
23+
package_data={'web': ['templates/*', 'static/css/*']},
2324
install_requires=['pydot2==1.0.33', 'tornado==4.0.2', 'Flask==0.10.1']
24-
)
25+
)

0 commit comments

Comments
 (0)