diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index a061053bbd54be8bc415bdb3e82aceac74811ef0..bc3d85955d18a4ee1dc98c5d31e88d2467b8f0b7 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -1,7 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project version="4">
   <component name="ChangeListManager">
-    <list default="true" id="5c346737-53d8-4e87-88c5-7be2c8e7baeb" name="Default" comment="" />
+    <list default="true" id="5c346737-53d8-4e87-88c5-7be2c8e7baeb" name="Default" comment="">
+      <change afterPath="$PROJECT_DIR$/Report1_resources_do_not_hand_in.dat" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/MANIFEST.in" beforeDir="false" afterPath="$PROJECT_DIR$/MANIFEST.in" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/setup.py" beforeDir="false" afterPath="$PROJECT_DIR$/setup.py" afterDir="false" />
+    </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
     <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@@ -121,13 +126,14 @@
     <property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
     <property name="SHARE_PROJECT_CONFIGURATION_FILES" value="true" />
     <property name="WebServerToolWindowFactoryState" value="false" />
-    <property name="last_opened_file_path" value="$PROJECT_DIR$/../02465public" />
+    <property name="last_opened_file_path" value="$PROJECT_DIR$" />
     <property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
     <property name="nodejs_npm_path_reset_for_default_project" value="true" />
     <property name="settings.editor.selected.configurable" value="com.jetbrains.python.configuration.PythonContentEntriesConfigurable" />
   </component>
   <component name="RecentsManager">
     <key name="CopyFile.RECENT_KEYS">
+      <recent name="C:\Users\tuhe\Documents\unitgrade" />
       <recent name="C:\Users\tuhe\Documents\unitgrade_private" />
     </key>
     <key name="MoveFile.RECENT_KEYS">
diff --git a/MANIFEST.in b/MANIFEST.in
index 209a924f3e3ed3729f86030fa201c95b8c35a9f0..822df1c4cb8aa8b28c9a1031a6f20c66fafebee6 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,3 +1 @@
 include *.dat
-recursive-include unitgrade *.dat
-recursive-include cs101courseware_example *.dat
\ No newline at end of file
diff --git a/Report1_resources_do_not_hand_in.dat b/Report1_resources_do_not_hand_in.dat
new file mode 100644
index 0000000000000000000000000000000000000000..8a6e89d1b0a9df89ef3999538619b344fd90c88f
Binary files /dev/null and b/Report1_resources_do_not_hand_in.dat differ
diff --git a/setup.py b/setup.py
index 9266a97065e8662e336e5785bb2fa4d1ee158153..b4245fa196bb6ed524d1bce1a4c5da92fc637dfe 100644
--- a/setup.py
+++ b/setup.py
@@ -7,11 +7,11 @@ setup(
     version=version,
     packages=['unitgrade', 'cs101courseware_example'],
     url='https://lab.compute.dtu.dk/tuhe/unitgrade',
-    license='Apache', 
+    license='Apache',
     author='Tue Herlau',
     author_email='tuhe@dtu.dk',
     description='A lightweight student evaluation framework build on unittest',
+    include_package_data=True,
     install_requires=['jinja2', 'tabulate', 'sklearn', 'compress_pickle', ],
-    # include_package_data=False,
     # package_data={'', ['*.dat']},#'cs101courseware_example/Report1_resources_do_not_hand_in.dat', 'cs101courseware_example/Report2_resources_do_not_hand_in.dat')},
 )