gmyth-stream/server/setup.py
author melunko
Mon Mar 03 17:38:32 2008 +0000 (2008-03-03)
branchtrunk
changeset 939 1418e08cee7a
parent 832 daa61fffb811
permissions -rw-r--r--
[svn r948] Added new function to retrieve old schedules in order to reactivate them
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@930
     5
      version='0.7.1',
renatofilho@930
     6
      description='GMyth Transcode server',
renatofilho@930
     7
      long_description='GMyth Transcode server',
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
      )