Changeset 30
- Timestamp:
- 08/17/06 16:27:02 (2 years ago)
- Files:
-
- trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/setup.py
r3 r30 16 16 license = 'LGPL', 17 17 url = 'http://www.kforgeproject.com/', 18 description = 'Framework for web applications.',18 description = 'Framework for enterprise applications.', 19 19 long_description = \ 20 20 """ 21 Domainmodel is an open-source (GPL) system for....21 Domainmodel provides a framework for enterprise applications. 22 22 """, 23 23 package_dir = {'': 'src'}, 24 24 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 ) 25 32 ) 26 33
