We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd4ac38 commit cf9aed4Copy full SHA for cf9aed4
setup.py
@@ -1,4 +1,5 @@
1
from setuptools import setup
2
+import os
3
4
def readme ():
5
try:
@@ -7,7 +8,10 @@ def readme ():
7
8
except IOError:
9
return ''
10
-data_files = ['cravat_multiuser.css', 'cravat_multiuser.js', 'login.html']
11
+data_files = ['favicon.ico', 'favicon.png', 'logout.png', 'pwchng.png']
12
+for root, dirs, files in os.walk(os.path.join('cravat_multiuser', 'nocache')):
13
+ root_files = [os.path.join('..', root, f) for f in files]
14
+ data_files.extend(root_files)
15
16
setup(
17
name='open-cravat-multiuser',
0 commit comments