diff options
-rw-r--r-- | dist/django-exam-0.1.tar.gz | bin | 88311 -> 88482 bytes | |||
-rw-r--r-- | setup.py | 6 | ||||
-rw-r--r-- | testapp/README.rst | 21 |
3 files changed, 11 insertions, 16 deletions
diff --git a/dist/django-exam-0.1.tar.gz b/dist/django-exam-0.1.tar.gz Binary files differindex 6a5ef4a..8c5bb24 100644 --- a/dist/django-exam-0.1.tar.gz +++ b/dist/django-exam-0.1.tar.gz @@ -6,6 +6,9 @@ README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) +link = 'git+https://github.com/prathamesh920/\ +django-taggit-autocomplete-modified.git' + setup( name='django-exam', author='Prabhu Ramachandran', @@ -24,8 +27,9 @@ setup( install_requires=[ 'django', 'django-taggit', - 'django-taggit-autocomplete-modified', + 'django-taggit-autocomplete-modified>=0.2', ], + dependency_links=[link+'#egg=django_taggit_autocomplete_modified-0.2'], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', diff --git a/testapp/README.rst b/testapp/README.rst index aa0ee81..6f49d4b 100644 --- a/testapp/README.rst +++ b/testapp/README.rst @@ -11,7 +11,7 @@ Quick start ------------ 1. Add "testapp.exam", "taggit" and "taggit_autocomplete_modified" apps - to your INSTALLED_APPS setting as follows: + to your INSTALLED_APPS setting as follows:: INSTALLED_APPS =( 'testapp.exam', @@ -23,28 +23,19 @@ Quick start You can change the testapp.exam.Profile to your desired app user profile. 3. Include the "testapp.exam" and taggit_autocomplete_modified URL configuration - in your project urls.py as follows: + in your project urls.py as follows:: url(r'^exam/', include('testapp.exam.urls')), url(r'^taggit_autocomplete_modified/', include\ ('taggit_autocomplete_modified.urls')) -4. Since taggit_autocomplete_modified version for django=>1.5 is not available - you have to do one change manually. In taggit_autocomplete_modified app url, - remove "default" from the import statement as follows: - Change: from django.conf.urls.defaults import * - to : from django.conf.urls import * +4. Run 'python manage.py syncdb' to create models for the new installed apps. - Note: location of the above file will probably be as - ../lib/python2.7/site-packages/taggit_autocomplete_modified/urls.py +5. Start the development server and visit http://localhost:8000/exam/ -5. Run 'python manage.py syncdb' to create "exam" models. +6. In exam app run code_sever command as superuser as follows:: -6. Start the development server and visit http://localhost:8000/exam/ - -7. In exam app run code_sever command as superuser as follows: - - $ code_server + $ code_server Note: You must have a sudo access to run the above command. |