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

Last change on this file since 954 was 953, checked in by pstorz, on Sep 28, 2011 at 11:32:32 AM

first checkin

File size: 463 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=[('share/dassmodus',['templates/BEE404psql.dmdz'])]
16 )
17
Note: See TracBrowser for help on using the repository browser.