setup.py
author Tero Marttila <terom@fixme.fi>
Fri, 26 Jun 2009 22:21:28 +0300
changeset 137 59ffc766abd9
parent 45 69eb5a4678a4
child 139 d3167c40e7b9
permissions -rw-r--r--
update setuptools config
#!/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',
        'scripts/fix_duplicate_shorturls.py', 'scripts/migrate_shorturls.py',
        'cgi-bin/series.py', 'cgi-bin/shorturl.py',
    ],
)