gmyth-stream/server/setup.py
author renatofilho
Mon Oct 08 19:17:47 2007 +0100 (2007-10-08)
branchtrunk
changeset 858 ebd3aaff20e0
parent 815 7f290a3a34b1
child 930 bb5d61b14d41
permissions -rw-r--r--
[svn r864] fixed bug on uri without port
     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       )