#!/usr/bin/env python

from distutils.core import setup
from willie import __version__

setup(name = 'willie',
      version = __version__,
      description = 'Simple and extendible IRC bot',
      author = 'Edward Powell',
      author_email = 'powell.518@gmail.com',
      url = 'http://willie.dftba.net/',
      long_description = """Willie is a simple, lightweight, open source, easy-to-use IRC Utility bot, written in Python. It's designed to be easy to use, easy to run, and easy to make new features for. """,
      packages = ['willie', 'willie.modules'],
      scripts = ['willie.py']
     )
