From a5d97c6e274374dea770dae561047fc9f8cc37b8 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sat, 19 Mar 2011 09:20:20 +0200 Subject: [PATCH] Add the .png files to the package and set OpenLP's classification. --- MANIFEST.in | 1 + setup.py | 36 +++++++++++++++++++++++++++++++++++- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index b51cd4c06..35e83e30f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,6 +4,7 @@ recursive-include openlp *.csv recursive-include openlp *.html recursive-include openlp *.js recursive-include openlp *.css +recursive-include openlp *.png recursive-include documentation * recursive-include resources * recursive-include scripts * diff --git a/setup.py b/setup.py index 98e9d40fd..516da89ff 100755 --- a/setup.py +++ b/setup.py @@ -62,7 +62,41 @@ setup( description="Open source Church presentation and lyrics projection application.", long_description="""\ OpenLP (previously openlp.org) is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if PowerPoint is installed) for church worship using a computer and a data projector.""", - classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: MacOS X', + 'Environment :: Win32 (MS Windows)', + 'Environment :: X11 Applications', + 'Environment :: X11 Applications :: Qt', + 'Intended Audience :: End Users/Desktop', + 'Intended Audience :: Religion', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Natural Language :: Afrikaans', + 'Natural Language :: Dutch', + 'Natural Language :: English', + 'Natural Language :: French', + 'Natural Language :: German', + 'Natural Language :: Hungarian', + 'Natural Language :: Indonesian', + 'Natural Language :: Japanese', + 'Natural Language :: Norwegian', + 'Natural Language :: Portuguese (Brazilian)', + 'Natural Language :: Russian', + 'Natural Language :: Swedish', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX :: BSD :: FreeBSD', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Topic :: Desktop Environment :: Gnome', + 'Topic :: Desktop Environment :: K Desktop Environment (KDE)', + 'Topic :: Multimedia', + 'Topic :: Multimedia :: Graphics :: Presentation', + 'Topic :: Multimedia :: Sound/Audio', + 'Topic :: Multimedia :: Video', + 'Topic :: Religion' + ], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='open source church presentation lyrics projection song bible display project', author='Raoul Snyman', author_email='raoulsnyman@openlp.org',