gmyth-stream/server/setup.py
author morphbr
Wed Sep 12 16:47:02 2007 +0100 (2007-09-12)
branchtrunk
changeset 841 25fb81d23ef5
parent 815 7f290a3a34b1
child 930 bb5d61b14d41
permissions -rw-r--r--
[svn r847] - Fixed several bugs
- Included some help functions
renatofilho@815
     1
from distutils.core import setup
renatofilho@815
     2
from glob import glob
renatofilho@815
     3
renatofilho@815
     4
setup(name='gms',
renatofilho@815
     5
      version='0.6',
renatofilho@815
     6
      description='carman rich view package',
renatofilho@815
     7
      long_description='carman rich view (SDL based) package',
renatofilho@815
     8
      url='http://www.indt.org.br',
renatofilho@815
     9
      scripts=['gms.py'],
renatofilho@815
    10
      package_dir={'lib': 'lib', 'plugins' : 'plugins','data' : 'data' },
renatofilho@815
    11
      packages=['lib','plugins','plugins.transcoders','plugins.transcoders.mencoder_lib'],
renatofilho@815
    12
      data_files = [
renatofilho@815
    13
               ('share/gms/html', glob("html/*")),
renatofilho@815
    14
               ('etc/init.d', ['data/gmsd']),
renatofilho@815
    15
               ('etc/gms', ['data/server.conf'])
renatofilho@815
    16
               ],
renatofilho@815
    17
      )