From 3b8443fa2ee0fee5809220e2136b632a2dc11e90 Mon Sep 17 00:00:00 2001 From: Tim Baxter Date: Wed, 20 Nov 2013 12:45:52 -0600 Subject: [PATCH] Updated requirements --- README.md | 4 ++-- docs/requirements.txt | 6 +++--- setup.py | 7 +------ 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 14da904..6f3b47c 100644 --- a/README.md +++ b/README.md @@ -44,12 +44,12 @@ Before users can register and sign in, you'll also need to configure user regist ## So what batteries are included? * [News/articles/blogs](https://github.com/tBaxter/tango-articles) * [Photo galleries](https://github.com/tBaxter/tango-photos) +* Sophisticated contact and user submissions forms courtesy of [Tango Contact Manager](https://github.com/tBaxter/tango-contact-manager) * Video integration with Youtube, Hulu and uStream -* Robust event calendars and management +* Robust event calendars and management with [Tango Happenings](https://github.com/tBaxter/tango-happenings) * Autotagging articles for automatic creation of links from key phrases and cross-linking between apps * A straighforward user profile model (that you're welcome to ignore if you have your own) * Capo, a simple SASS-based framework for quickly styling your site. -* Sophisticated contact and user submissions forms. ### What else? diff --git a/docs/requirements.txt b/docs/requirements.txt index 6b9395e..53cf27a 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -9,10 +9,10 @@ smartypants>=1.6.0.3 typogrify>=2.0.0 vobject>=0.8.1c +tango-articles>=0.4 +tango-contact-manager>=0.5 +tango-happenings>=0.3 tango-shared>=0.5 -tango-articles>=0.3 -tango-contact>=0.4 -tango-happenings>=0.2 tango-voting>=0.1 tango-capo>=0.2 tango-photos>=0.1 diff --git a/setup.py b/setup.py index a1b4471..4bfe28a 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='django-tango', - version='0.4', + version='0.4.3', author=u'Tim Baxter', author_email='mail.baxter@gmail.com', description='Faster, simpler Django content management.', @@ -20,11 +20,6 @@ zip_safe=False, dependency_links = [ 'http://github.com/tBaxter/tango-shared-core/tarball/master#egg=tango-shared-0.5', - 'http://github.com/tBaxter/tango-articles/tarball/master#egg=tango-articles-0.3', - 'http://github.com/tBaxter/tango-contact-manager/tarball/master#egg=tango-contact-0.4', 'http://github.com/tBaxter/django-voting/tarball/master#egg=tango-voting-0.1', - 'http://github.com/tBaxter/django-happenings/tarball/master#egg=tango-happenings-0.2', - 'http://github.com/tBaxter/tango-capo/tarball/master#egg=tango-capo-0.2', - 'http://github.com/tBaxter/tango-photos/tarball/master#egg=tango-photos-0.1' ] )