diff --git a/.gitignore b/.gitignore index f1d1574..9fde1f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.pyc dist/ *egg-info/ +build/ diff --git a/setup.py b/setup.py index ddef069..f302c4e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( version='0.1', packages=['anonsurvey'], include_package_data=True, - license='GPLv3', # example license + license='GPLv3', description='A Django app to create Web-based anonymous surveys', long_description=README, install_requires=["django-tinymce", "Django-tinymce-filebrowser"], @@ -22,7 +22,7 @@ setup( 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', - 'License :: OSI Approved :: GPLv3', # example license + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', @@ -31,4 +31,4 @@ setup( 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], -) \ No newline at end of file +)