From 7e00bfcb374461352eb34ab9aa39b6e9654e5de8 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 4 Nov 2014 18:19:50 +0100 Subject: [PATCH] fix deps and sandbox media urls --- example/settings.py | 2 +- setup.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/example/settings.py b/example/settings.py index 599ddcee..4bf70dd8 100644 --- a/example/settings.py +++ b/example/settings.py @@ -64,7 +64,7 @@ if not os.path.exists(MEDIA_ROOT): # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash if there is a path component (optional in other cases). # Examples: "http://media.lawrence.com", "http://example.com/media/" -MEDIA_URL = 'http://wm22.parisson.com:8040/' +MEDIA_URL = '/media/' # Absolute path to the directory static files should be collected to. # Don't put anything in this directory yourself; store your static files diff --git a/setup.py b/setup.py index 0fefcc20..86a22f51 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( long_description = open('README.rst').read(), author = "Guillaume Pellerin", author_email = "yomguy@parisson.com", - version = '0.9', + version = '1.0', install_requires = [ 'django>=1.4', 'telemeta', @@ -22,6 +22,8 @@ setup( 'django-notes', 'django-timezones', 'django-jqchat', + 'django-googletools', + 'crocodoc', ], platforms=['OS Independent'], license='CeCILL v2', -- 2.39.5