openlp/setup.py

43 lines
1.4 KiB
Python
Raw Normal View History

from setuptools import setup, find_packages
import sys, os
VERSION_FILE = 'openlp/.version'
try:
from bzrlib.branch import Branch
b = Branch.open_containing('.')[0]
b.lock_read()
try:
verno = b.tags.get_tag_dict().keys()[0]
2010-02-19 19:17:32 +00:00
revno = b.revno()
finally:
b.unlock()
except:
2010-02-19 19:17:32 +00:00
verno = '1.9.0'
revno = 0
2009-08-27 14:02:00 +00:00
2010-02-19 19:17:32 +00:00
version = '%s-bzr%s' % (verno, revno)
2009-08-27 14:02:00 +00:00
setup(
name='OpenLP',
version=version,
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
keywords='open source church presentation lyrics projection song bible display project',
author='Raoul Snyman',
author_email='raoulsnyman@openlp.org',
url='http://openlp.org/',
license='GNU General Public License',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
"""
)