source: dassmodus/trunk/dassmodus/dassmodus/setup.py@ 971

Last change on this file since 971 was 971, checked in by pstorz, on Oct 19, 2011 at 1:02:47 PM

templates go now into /templates subdir

File size: 544 bytes
Line 
1#!/usr/bin/env python
2
3from distutils.core import setup
4#import py2exe
5
6setup(name='dassModus',
7 version='0.1',
8 description='Frontend to configure bacula ',
9 author='Philipp Storz',
10 author_email='packager@dass-it.de',
11 url='http://www.dass-it.de/',
12 #packages = find_packages()
13 packages=['dassmodus','dassmodus/ui'],
14 scripts=['dassModus.py'],
15 data_files=[('/usr/share/dassmodus/templates',['templates/BEE404psql.dmdz',
16 'templates/503_psql.dmdz'])]
17
18 )
19
Note: See TracBrowser for help on using the repository browser.