diff options
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | dist/django-exam-0.1.tar.gz | bin | 94395 -> 0 bytes | |||
-rw-r--r-- | setup.py | 8 | ||||
-rw-r--r-- | testapp/README.rst | 15 |
4 files changed, 14 insertions, 11 deletions
@@ -1,3 +1,3 @@ This is distributed under the terms of the BSD license. -Copyright (c) 2011 Prabhu Ramachandran and FOSSEE (fossee.in) +Developed by IIT Bombay, is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. diff --git a/dist/django-exam-0.1.tar.gz b/dist/django-exam-0.1.tar.gz Binary files differdeleted file mode 100644 index 753b635..0000000 --- a/dist/django-exam-0.1.tar.gz +++ /dev/null @@ -11,8 +11,8 @@ django-taggit-autocomplete-modified.git' setup( name='django-exam', - author='Prabhu Ramachandran', - author_email='prabhu.ramachandran@gmail.com', + author='python team at IIT Bombay', + author_email='python@fossee.in', version='0.1', packages=find_packages(), include_package_data=True, @@ -22,13 +22,13 @@ setup( 'code_server = testapp.exam.code_server:main', ], }, - description='A django app to conduct online test.', + description='A django app to conduct online tests.', long_description=README, install_requires=[ 'django==1.6', 'mysql-python==1.2.5', 'django-taggit==0.12.2', - 'django-taggit-autocomplete-modified>=0.2', + 'django-taggit-autocomplete-modified > 0.1.0b4', ], dependency_links=[link+'#egg=django_taggit_autocomplete_modified-0.2'], classifiers=[ diff --git a/testapp/README.rst b/testapp/README.rst index 6f49d4b..f4790a3 100644 --- a/testapp/README.rst +++ b/testapp/README.rst @@ -10,7 +10,10 @@ conduct online test and monitor the test. Quick start ------------ -1. Add "testapp.exam", "taggit" and "taggit_autocomplete_modified" apps +1. In yourterminal run the following command:: + $ easy_install git+https://github.com/FOSSEE/online_test.git#egg=django_exam-0.1 + +2. Add "testapp.exam", "taggit" and "taggit_autocomplete_modified" apps to your INSTALLED_APPS setting as follows:: INSTALLED_APPS =( @@ -19,10 +22,10 @@ Quick start 'taggit_autocomplete_modified', ) -2. In project settings, add AUTH_PROFILE_MODULE = 'testapp.exam.Profile' +3. In project settings, add AUTH_PROFILE_MODULE = 'testapp.exam.Profile' You can change the testapp.exam.Profile to your desired app user profile. -3. Include the "testapp.exam" and taggit_autocomplete_modified URL configuration +4. Include the "testapp.exam" and taggit_autocomplete_modified URL configuration in your project urls.py as follows:: url(r'^exam/', include('testapp.exam.urls')), @@ -30,11 +33,11 @@ Quick start ('taggit_autocomplete_modified.urls')) -4. Run 'python manage.py syncdb' to create models for the new installed apps. +5. Run 'python manage.py syncdb' to create models for the new installed apps. -5. Start the development server and visit http://localhost:8000/exam/ +6. Start the development server and visit http://localhost:8000/exam/ -6. In exam app run code_sever command as superuser as follows:: +7. In exam app run code_sever command as superuser as follows:: $ code_server |