From 5802505037c0017a9e4deb7d523e8798ac175367 Mon Sep 17 00:00:00 2001
From: Andreas Burbach <aburbach@compeon.de>
Date: Thu, 9 Dec 2021 13:42:52 +0100
Subject: [PATCH] remove media files from wheel file

---
 social_network/README.md      | 2 +-
 social_network/pyproject.toml | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/social_network/README.md b/social_network/README.md
index 0395cf6..cb794e7 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 28087d8..9820520 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"
-- 
GitLab