diff options
author | Prabhu Ramachandran | 2015-09-01 13:02:43 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2015-09-01 13:02:43 +0530 |
commit | 44cb800dec3fb81fa084ef59ebe4b54f0b389bc1 (patch) | |
tree | 23d0b9e46631906de819a5538c2b36b03ac7250b /setup.py | |
parent | 0225aad1492600ed53504b0986fd13da24c28ae9 (diff) | |
parent | c261ae92e5d4578b4e36c32def862bec4c6692aa (diff) | |
download | online_test-44cb800dec3fb81fa084ef59ebe4b54f0b389bc1.tar.gz online_test-44cb800dec3fb81fa084ef59ebe4b54f0b389bc1.tar.bz2 online_test-44cb800dec3fb81fa084ef59ebe4b54f0b389bc1.zip |
Merge pull request #52 from ankitjavalkar/quickstarter
Quick Start and README changes
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -1,14 +1,11 @@ import os from setuptools import setup, find_packages -README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() +README = open(os.path.join(os.path.dirname(__file__), 'README.md')).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='python team at IIT Bombay', @@ -19,7 +16,7 @@ setup( license='BSD License', entry_points = { 'console_scripts': [ - 'code_server = testapp.exam.code_server:main', + 'vimarsh = testapp.scripts.vimarsh:main', ], }, description='A django app to conduct online tests.', @@ -28,9 +25,7 @@ setup( 'django==1.6', 'mysql-python==1.2.5', 'django-taggit==0.12.2', - 'django-taggit-autocomplete-modified > 0.1.0b4', ], - dependency_links=[link+'#egg=django_taggit_autocomplete_modified-0.2'], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', |