Changeset 452 for indytube/trunk

Show
Ignore:
Timestamp:
12/22/08 03:46:31 (15 months ago)
Author:
andy
Message:

start to clean up the package

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 
     1Welcome to Indytube 
    22 
    3 http://plumi.org/wiki/TransCoding 
    43--- 
    54 
    6 how to: 
     5This is the top-level of the Indytube backend python egg. 
    76 
    8 Creating a source distribution 
     7please see  
     8http://plumi.org/wiki/IndyTube 
     9for a comprehensive overview of the Indytube architecture. 
     10 
     11A quick how to: 
     12 
     13Creating a source distribution: 
    914python setup.py sdist 
    1015 
    11 Creating a binary distrubtion 
    12 python setup.py bdist 
     16Creating a binary distrubtion: 
     17python setup.py bdist_egg 
    1318 
    1419Clean all: 
    1520python setup.py clean --all 
    16  
    17  
    18 DONT check into SVN : 
    19 indytube.egg-info 
    20 dist 
    21 build 
    2221 
    2322 
  • indytube/trunk/setup.py

    r345 r452  
    44version = '0.3' 
    55 
    6 setup(name='indytube', 
     6setup(name='indytube-backend', 
    77      version=version, 
    88      description="Indytube - downloading, transcoding and bittorrent seeding/tracker server", 
    99      long_description="""\ 
    10 A server for transcoding using mencoder/ffmpeg2theora , and bittorrent metafile creation and seeding""", 
     10A video processing server for transcoding video files using mencoder/ffmpeg/ffmpeg2theora , and bittorrent metafile creation and seeding using transmission-cli and transmission-remote.""", 
    1111      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_classifiers 
    19       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', 
    2121      author_email='andy@engagemedia.org', 
    22       url='http://plumi.org/wiki/TransCoding', 
     22      url='http://plumi.org/wiki/IndyTube', 
    2323      license='GPL', 
    24       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), 
     24      packages=find_packages(), 
    2525      include_package_data=True, 
    2626      zip_safe=False, 
    2727      install_requires=[ 
    2828          # -*- 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          # 
    3534      ], 
    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          }, 
    4338      )