Changeset 30

Show
Ignore:
Timestamp:
08/17/06 16:27:02 (2 years ago)
Author:
johnbywater
Message:

Added templates and config file to setup.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/setup.py

    r3 r30  
    1616    license = 'LGPL', 
    1717    url = 'http://www.kforgeproject.com/', 
    18     description = 'Framework for web applications .', 
     18    description = 'Framework for enterprise applications.', 
    1919    long_description = \ 
    2020""" 
    21 Domainmodel is an open-source (GPL) system for...
     21Domainmodel provides a framework for enterprise applications
    2222""", 
    2323    package_dir = {'': 'src'}, 
    2424    packages = getPackages(os.path.join(basePath, 'src')), 
     25    data_files=[ 
     26        ('share/dm/etc', ['etc/kforge.conf.new']), 
     27    ] + getDataFiles( 
     28        'share/dm/www/media', basePath, 'src/dm/django/media' 
     29    ) + getDataFiles( 
     30        'share/dm/templates', basePath, 'src/dm/django/templates' 
     31    ) 
    2532) 
    2633