renatofilho@815: from distutils.core import setup renatofilho@815: from glob import glob renatofilho@815: renatofilho@815: setup(name='gms', renatofilho@930: version='0.7.1', renatofilho@930: description='GMyth Transcode server', renatofilho@930: long_description='GMyth Transcode server', renatofilho@815: url='http://www.indt.org.br', renatofilho@815: scripts=['gms.py'], renatofilho@815: package_dir={'lib': 'lib', 'plugins' : 'plugins','data' : 'data' }, renatofilho@815: packages=['lib','plugins','plugins.transcoders','plugins.transcoders.mencoder_lib'], renatofilho@815: data_files = [ renatofilho@815: ('share/gms/html', glob("html/*")), renatofilho@815: ('etc/init.d', ['data/gmsd']), renatofilho@815: ('etc/gms', ['data/server.conf']) renatofilho@815: ], renatofilho@815: )