fix license name

This commit is contained in:
darko-poljak 2014-03-02 00:40:25 +01:00
parent f0d574d192
commit e6175bf6c8
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.pyc *.pyc
dist/ dist/
*egg-info/ *egg-info/
build/

View File

@ -11,7 +11,7 @@ setup(
version='0.1', version='0.1',
packages=['anonsurvey'], packages=['anonsurvey'],
include_package_data=True, include_package_data=True,
license='GPLv3', # example license license='GPLv3',
description='A Django app to create Web-based anonymous surveys', description='A Django app to create Web-based anonymous surveys',
long_description=README, long_description=README,
install_requires=["django-tinymce", "Django-tinymce-filebrowser"], install_requires=["django-tinymce", "Django-tinymce-filebrowser"],
@ -22,7 +22,7 @@ setup(
'Environment :: Web Environment', 'Environment :: Web Environment',
'Framework :: Django', 'Framework :: Django',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: GPLv3', # example license 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.6',
@ -31,4 +31,4 @@ setup(
'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
], ],
) )