setup.py
author Tero Marttila <terom@fixme.fi>
Wed, 01 Jul 2009 20:15:08 +0300
changeset 139 d3167c40e7b9
parent 137 59ffc766abd9
permissions -rw-r--r--
remove old scripts/cgi-bin stuff. They wouldn't work as such with the new version, and replacements can be written while referring to the history
#!/usr/bin/env python

from distutils.core import setup

setup(
    # metadata
    name            = "Degal",
    version         = "0.9",
    description     = "Image gallery script",
    author          = "Tero Marttila",
    author_email    = "terom@fixme.fi",
    url             = "http://projects.qmsk.net/degal",
    
    # dependencies
    requires        = [
        "mako",
        
    ],

    # manifest
    packages        = [
        'degal',
        'degal.commands',
    ],

    package_data    = {
        'degal': [ 'templates/*.html', 'static/*' ],
    },

    scripts         = [
        'bin/degal',
    ],
)