From 60034cf30b9d4b1d81aec684ea93ed78be581ff8 Mon Sep 17 00:00:00 2001 From: Davte Date: Fri, 19 Jul 2019 13:13:20 +0200 Subject: [PATCH] Ignore pictures folder (symbolic link) --- .gitignore | 5 ++++- MANIFEST.in | 1 + ciclopibot/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1066dc9..df46d93 100644 --- a/.gitignore +++ b/.gitignore @@ -2,11 +2,14 @@ local_* my_config.sh -# Data folders +# Data folder ciclopibot/data/* !ciclopibot/data/__init__.py !ciclopibot/data/help.json +# Pictures folder (symbolic link) +ciclopibot/img + # ---> Python # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/MANIFEST.in b/MANIFEST.in index b5c7522..56321a3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ exclude ciclopibot/data/* include ciclopibot/data/__init__.py include ciclopibot/data/help.json +exclude ciclopibot/img* diff --git a/ciclopibot/__init__.py b/ciclopibot/__init__.py index d14b99f..aac8ea7 100644 --- a/ciclopibot/__init__.py +++ b/ciclopibot/__init__.py @@ -3,6 +3,6 @@ __author__ = "Davide Testa" __email__ = "davide@davte.it" __license__ = "GNU General Public License v3.0" -__version__ = "1.0.1" +__version__ = "1.0.2" __maintainer__ = "Davide Testa" __contact__ = "t.me/davte"