diff options
author | maheshgudi | 2017-11-15 18:39:43 +0530 |
---|---|---|
committer | maheshgudi | 2017-11-15 18:41:37 +0530 |
commit | 401f1ae1fe5ae873cc0ac373b2b3e1add7ccf69c (patch) | |
tree | be1ba69459800453c16a61d0a1c5b228d17cb151 | |
parent | 50569f1f778260139fe7def6004576b2bffa2a3a (diff) | |
download | online_test-401f1ae1fe5ae873cc0ac373b2b3e1add7ccf69c.tar.gz online_test-401f1ae1fe5ae873cc0ac373b2b3e1add7ccf69c.tar.bz2 online_test-401f1ae1fe5ae873cc0ac373b2b3e1add7ccf69c.zip |
Update setup.py for PyPI release.
- Update release date on changelog.txt
-rw-r--r-- | CHANGELOG.txt | 2 | ||||
-rw-r--r-- | setup.py | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f158f61..e259117 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,4 @@ -=== 0.7.0 (14-11-2017) === +=== 0.7.0 (15-11-2017) === * Simplified Standard I/O type question error output. * Added the facility to search questions using tags. @@ -1,7 +1,7 @@ import os from setuptools import setup, find_packages -README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() +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))) @@ -20,7 +20,10 @@ install_requires = [ 'python-social-auth==0.2.19', 'tornado', 'psutil', - 'ruamel.yaml==0.15.23' + 'ruamel.yaml==0.15.23', + 'invoke==0.21.0', + 'six', + 'requests', ] setup( @@ -37,7 +40,7 @@ setup( 'yaksh = yaksh.scripts.cli:main', ], }, - description='A django app to conduct online tests.', + description='A django app to conduct online programming tests.', long_description=README, install_requires=install_requires, classifiers=[ |