Skip to content
Snippets Groups Projects
Commit c6b0107f authored by Leonardo Caballero's avatar Leonardo Caballero
Browse files

Updated setup.py file

parent 719a2450
Branches
No related tags found
No related merge requests found
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
import os import os
LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
CLASSIFIERS = [ CLASSIFIERS = [
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment', 'Environment :: Web Environment',
...@@ -24,13 +26,13 @@ setup( ...@@ -24,13 +26,13 @@ setup(
name='helloworld', name='helloworld',
version='0.1', version='0.1',
description='A Django hello world example ', 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', url='https://github.com/django-ve/helloworld',
license='GPL', license='GPL',
platforms=['OS Independent'], platforms=['OS Independent'],
classifiers=CLASSIFIERS, classifiers=CLASSIFIERS,
install_requires=[ install_requires=[
'Django==1.6.5', 'Django==1.9.4',
], ],
packages=find_packages(exclude=["project","project.*"]), packages=find_packages(exclude=["project","project.*"]),
include_package_data=True, include_package_data=True,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment