from setuptools import setup, find_packages
import sys, os

version = '0.3'

setup(name='indytube',
      version=version,
      description="Indytube - downloading, transcoding and bittorrent seeding/tracker server",
      long_description="""\
A server for transcoding using mencoder/ffmpeg2theora , and bittorrent metafile creation and seeding""",
      classifiers=['Development Status :: 4 - Beta',
      		   'Environment :: Console',
		   'Framework :: Zope2',
		   'License :: OSI Approved :: GNU General Public License (GPL)',
		   'Programming Language :: Python',
		   'Topic :: Multimedia :: Video',
		   'Topic :: Multimedia'
		  ], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords='',
      author='andy nicholson',
      author_email='andy@engagemedia.org',
      url='http://plumi.org/wiki/TransCoding',
      license='GPL',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
	  # Twisted doesnt work yet - http://twistedmatrix.com/trac/ticket/1286
	  #'Twisted>=2.5',
	  'Cheetah',
      'ztg'
	  # Nevow
	  #
      ],
      entry_points="""
      # -*- Entry points: -*-
      """,
      scripts=['indytube/indytube.py'],

      data_files = [ 	('/etc/indytube/', ['indytube/indytube.conf']),  
      		   ] ,
      )
