Changeset 452 for indytube/trunk
- Timestamp:
- 12/22/08 03:46:31 (15 months ago)
- Location:
- indytube/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
indytube/trunk/README
r253 r452 1 The is the SVN repository for the indytube Egg 1 Welcome to Indytube 2 2 3 http://plumi.org/wiki/TransCoding4 3 --- 5 4 6 how to: 5 This is the top-level of the Indytube backend python egg. 7 6 8 Creating a source distribution 7 please see 8 http://plumi.org/wiki/IndyTube 9 for a comprehensive overview of the Indytube architecture. 10 11 A quick how to: 12 13 Creating a source distribution: 9 14 python setup.py sdist 10 15 11 Creating a binary distrubtion 12 python setup.py bdist 16 Creating a binary distrubtion: 17 python setup.py bdist_egg 13 18 14 19 Clean all: 15 20 python setup.py clean --all 16 17 18 DONT check into SVN :19 indytube.egg-info20 dist21 build22 21 23 22 -
indytube/trunk/setup.py
r345 r452 4 4 version = '0.3' 5 5 6 setup(name='indytube ',6 setup(name='indytube-backend', 7 7 version=version, 8 8 description="Indytube - downloading, transcoding and bittorrent seeding/tracker server", 9 9 long_description="""\ 10 A server for transcoding using mencoder/ffmpeg2theora , and bittorrent metafile creation and seeding""",10 A video processing server for transcoding video files using mencoder/ffmpeg/ffmpeg2theora , and bittorrent metafile creation and seeding using transmission-cli and transmission-remote.""", 11 11 classifiers=['Development Status :: 4 - Beta', 12 'Environment :: Console',13 'Framework :: Zope2',14 'License :: OSI Approved :: GNU General Public License (GPL)',15 'Programming Language :: Python',16 'Topic :: Multimedia :: Video',17 'Topic :: Multimedia'18 ], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers19 keywords=' ',20 author=' andy nicholson',12 'Environment :: Console', 13 'Framework :: Zope2', 14 'License :: OSI Approved :: GNU General Public License (GPL)', 15 'Programming Language :: Python', 16 'Topic :: Multimedia :: Video', 17 'Topic :: Multimedia' 18 ], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 19 keywords='transcoding bittorrent video distribution mencoder ffmpeg2theora ffmpeg', 20 author='Andy Nicholson', 21 21 author_email='andy@engagemedia.org', 22 url='http://plumi.org/wiki/ TransCoding',22 url='http://plumi.org/wiki/IndyTube', 23 23 license='GPL', 24 packages=find_packages( exclude=['ez_setup', 'examples', 'tests']),24 packages=find_packages(), 25 25 include_package_data=True, 26 26 zip_safe=False, 27 27 install_requires=[ 28 28 # -*- Extra requirements: -*- 29 # Twisted doesnt work yet - http://twistedmatrix.com/trac/ticket/1286 30 #'Twisted>=2.5', 31 'Cheetah', 32 'ztg' 33 # Nevow 34 # 29 'Twisted>=8.1.0', 30 'Cheetah', 31 #'ztg' 32 # Nevow 33 # 35 34 ], 36 entry_points=""" 37 # -*- Entry points: -*- 38 """, 39 scripts=['indytube/indytube.py'], 40 41 data_files = [ ('/etc/indytube/', ['indytube/indytube.conf']), 42 ] , 35 entry_points = { 36 'console_scripts': [ 'indytube_runner = indytube.runner:run' ], 37 }, 43 38 )
