diff options
author | prathamesh | 2014-08-11 01:25:35 +0530 |
---|---|---|
committer | prathamesh | 2014-08-11 01:25:35 +0530 |
commit | 7fb736c5751023b1a0c4237b0dcedf457c1d42c7 (patch) | |
tree | e566dba459c58b9b912ab1a1dcbcbea446275d4a /setup.py | |
parent | 740b0acfe6436cf2919b6da655f379ca6c7faaf4 (diff) | |
download | online_test-7fb736c5751023b1a0c4237b0dcedf457c1d42c7.tar.gz online_test-7fb736c5751023b1a0c4237b0dcedf457c1d42c7.tar.bz2 online_test-7fb736c5751023b1a0c4237b0dcedf457c1d42c7.zip |
setup.py and readme files updated
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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.1.0b5', ], + dependency_links=[link+'#egg=django_taggit_autocomplete_modified-0.1.0b5'], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', |