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

Updated setup.py file

parent 719a2450
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment