#!/usr/bin/python
from setuptools import setup, find_packages
setup(
    name = "Bazki",
    version = "0.2",
    packages = find_packages(),
    entry_points = {'paste.global_paster_command'
                    :['bazstart = bazstart.quickstart:BazstartCommand',
                      'gamestart = gamestart.gkquickstart:GamestartCommand'],
                    'paste.paster_create_template'
                    :['bazki = bazstart.pastetemplate:BazkiTemplate']},
    install_requires = ['SQLAlchemy>=0.7,<0.8',
                        'Elixir>=0.6.0',
                        'Pylons>=0.9.7',
                        'Mako>=0.3.6',
                        'TurboGears2',
                        'zope.sqlalchemy>=0.4',
                        'repoze.what-quickstart>=1.0',
                        'Babel>=0.9.4',
                        'repoze.retry',
                        'repoze.profile',
                        'WebOb>=1.0.8',
                        'Paste>=1.7.5.1',
                        'pyyaml', # Wants libyaml
                        #'pysvn',
                        #'python-rsvg' | 'gnome-python2-rsvg'
                        # | 'python-gnome2-desktop',
                        #'pyinotify'
                        ],
    include_package_data=True,
    test_suite = 'runtests'
    )
