From c6b0107fee09077f6f20a2b3813ed2fc3437dee6 Mon Sep 17 00:00:00 2001 From: Leonardo Caballero <lcaballero@vizormobil.com> Date: Wed, 16 Mar 2016 20:54:17 -0430 Subject: [PATCH] Updated setup.py file --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 84ee9cd..d755408 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,8 @@ from setuptools import setup, find_packages import os +LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(), + CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', @@ -24,13 +26,13 @@ setup( name='helloworld', version='0.1', description='A Django hello world example ', - long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(), + long_description=LONG_DESCRIPTION, url='https://github.com/django-ve/helloworld', license='GPL', platforms=['OS Independent'], classifiers=CLASSIFIERS, install_requires=[ - 'Django==1.6.5', + 'Django==1.9.4', ], packages=find_packages(exclude=["project","project.*"]), include_package_data=True, -- GitLab