diff --git a/social_network/README.md b/social_network/README.md
index 0395cf63800fa10d9a03140641258bffb3711ecf..cb794e736e0d154e02afa030c0e2360b428e4498 100644
--- a/social_network/README.md
+++ b/social_network/README.md
@@ -378,7 +378,7 @@ The project requieres the base authentication database structure from django and
 #### the_social_network_account
     with  
     user_id: int as primary key and foreign key to django auth_user  
-    image: varchar(100)  
+    image: varchar(100) -> default image is 'account/default/Argunaut.png', it's not inside the package and default path to store image is "account/images"
     biography: varchar(1000)  
 
 #### the_social_network_statement
diff --git a/social_network/pyproject.toml b/social_network/pyproject.toml
index 28087d8d0f59ddb48644aa7d78bb2661c7c3d0cc..9820520b41338830ec543a85be9c1ffa24a4f45e 100644
--- a/social_network/pyproject.toml
+++ b/social_network/pyproject.toml
@@ -1,12 +1,11 @@
 [tool.poetry]
 name = "the-social-network"
-version = "0.0.6"
+version = "0.0.7"
 description = "Basic social network core."
 authors = ["Marc Feger <marc.feger@hhu.de>"]
 license = "BSD-4"
 readme = "README.md"
 homepage = "https://gitlab.cs.uni-duesseldorf.de/feger/the-social-network"
-include = ["media/account/default/Argunaut.png", "media/account/default/Planet.png"]
 
 [tool.poetry.dependencies]
 python = "^3.9"