gmyth-stream/server/setup.py
author melunko
Thu Oct 25 18:43:23 2007 +0100 (2007-10-25)
branchtrunk
changeset 872 c91d9f4d142f
parent 815 7f290a3a34b1
child 930 bb5d61b14d41
permissions -rw-r--r--
[svn r878] Added gmyth-dbus/debian files for package generation
     1 from distutils.core import setup
     2 from glob import glob
     3 
     4 setup(name='gms',
     5       version='0.6',
     6       description='carman rich view package',
     7       long_description='carman rich view (SDL based) package',
     8       url='http://www.indt.org.br',
     9       scripts=['gms.py'],
    10       package_dir={'lib': 'lib', 'plugins' : 'plugins','data' : 'data' },
    11       packages=['lib','plugins','plugins.transcoders','plugins.transcoders.mencoder_lib'],
    12       data_files = [
    13                ('share/gms/html', glob("html/*")),
    14                ('etc/init.d', ['data/gmsd']),
    15                ('etc/gms', ['data/server.conf'])
    16                ],
    17       )