import setuptools

setuptools.setup(
    name = 'wizard-bluechips',
    version = '0.1.dev',
    author = 'Residents of Blue Sun Corporate Headquarters',
    author_email = 'chips@blue-sun-corp.com',
    description = ('Customizations to Wizard for BlueChips'),
    license = 'MIT',
    url = 'http://demo.bluechi.ps/',
    packages = setuptools.find_packages(),
    entry_points = {
        'wizard.app': ['bluechips = wizard_bluechips.bluechips:Application']
        }
)
