setup.py
author Tero Marttila <terom@fixme.fi>
Thu, 11 Jun 2009 22:50:21 +0300
changeset 96 d9cf1e272e90
parent 45 69eb5a4678a4
child 137 59ffc766abd9
permissions -rw-r--r--
fix LazyProperty to not inherit from property, so as to act as a non-data descriptor, which can then be overriden by per-instance __dict__ values
#!/usr/bin/env python

from distutils.core import setup

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

    # manifest
    packages        = [
        'degal'
    ],

    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',
    ],
)