From 08c8ffaad824282427ec3d98b3e6e6a53941aefc Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 30 Apr 2012 15:08:20 -0400 Subject: [PATCH] readme notes --- README.rst | 6 ++++-- setup.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 09be575..8d56f37 100644 --- a/README.rst +++ b/README.rst @@ -9,11 +9,13 @@ This simple Django utility allows you to utilize the Usage ----- -Configure your database in ``settings.py``:: +Configure your database in ``settings.py`` from ``DATABASE_URL``:: DATABASES['default'] = dj_database_url.config() -Nice and simple. +Parse an arbitrary Database URL:: + + DATABASES['default'] = dj_database_url.parse('postgres://...') Installation diff --git a/setup.py b/setup.py index 15f4a20..9b7b096 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ from setuptools import setup setup( name='dj-database-url', - version='0.1.1', + version='0.1.2', url='https://github.com/kennethreitz/dj-database-url', license='BSD', author='Kenneth Reitz',