M README.rst +2 -2
@@ 30,9 30,9 @@ Basic Install:
Alternative Install (Manually):
-Place webutils directory in your Python path. Either in your Python
+Place easyconfig directory in your Python path. Either in your Python
installs site-packages directory or set your $PYTHONPATH environment
-variable to include a directory where the webutils directory lives.
+variable to include a directory where the easyconfig directory lives.
Use
M easyconfig/__init__.py +1 -1
@@ 4,7 4,7 @@ from django.conf import settings
from django.core.exceptions import ImproperlyConfigured
-__version__ = '0.2'
+__version__ = '0.3'
class EasyConfig(object):
def __init__(self, default_module, setting_name):
M setup.py +1 -1
@@ 2,7 2,7 @@ import os
from distutils.core import setup
-version = '0.2'
+version = '0.3'
project_name = 'easyconfig'
long_description = open('README.rst').read()