diff --git a/README.rst b/README.rst
index 0a09940e5d3b98ed614a49c6c22c64784d7b7806..cffda86d5120c056f22940dd05ace673c45a3575 100644
--- a/README.rst
+++ b/README.rst
@@ -14,6 +14,11 @@ In your settings:
 
 ::
 
+    INSTALLED_APPS = [
+                      ...,
+                      'django_any_js',
+                      ...
+                     ]
     ANY_JS = {
               'DataTables': {
                              'js_url': '/javascript/jquery-datatables/dataTables.bootstrap4.min.js',
@@ -25,5 +30,6 @@ In your template:
 
 ::
 
+    {% load ... any_js %}
     {% include_js "DataTables" %}
     {% include_css "DataTables" %}
diff --git a/setup.py b/setup.py
index 7468cbfc7bdda5fc786679f3eebb4415bfee52fb..82febc28615d8409349330f3862f6bdf102a7c3a 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ MYDIR = os.path.dirname(__file__)
 
 setup(
     name='django-any-js',
-    version='1.0.3',
+    version='1.0.3.post0',
     keywords=['django', 'javascript'],
     description='Include JavaScript libraries with readable template tags',
     long_description=open(os.path.join(MYDIR, "README.rst"),