From 401f1ae1fe5ae873cc0ac373b2b3e1add7ccf69c Mon Sep 17 00:00:00 2001 From: maheshgudi Date: Wed, 15 Nov 2017 18:39:43 +0530 Subject: Update setup.py for PyPI release. - Update release date on changelog.txt --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 5bc0a56..9fe5be5 100644 --- a/setup.py +++ b/setup.py @@ -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=[ -- cgit