1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/gmyth-stream/server/0.3/setup.py Tue Aug 21 16:04:44 2007 +0100
1.3 @@ -0,0 +1,17 @@
1.4 +from distutils.core import setup
1.5 +from glob import glob
1.6 +
1.7 +setup(name='gms',
1.8 + version='0.6',
1.9 + description='carman rich view package',
1.10 + long_description='carman rich view (SDL based) package',
1.11 + url='http://www.indt.org.br',
1.12 + scripts=['gms.py'],
1.13 + package_dir={'lib': 'lib', 'plugins' : 'plugins','data' : 'data' },
1.14 + packages=['lib','plugins','plugins.transcoders','plugins.transcoders.mencoder_lib'],
1.15 + data_files = [
1.16 + ('share/gms/html', glob("html/*")),
1.17 + ('etc/init.d', ['data/gmsd']),
1.18 + ('etc/gms', ['data/server.conf'])
1.19 + ],
1.20 + )