| 1 | from setuptools import setup, find_packages |
|---|
| 2 | import sys, os |
|---|
| 3 | |
|---|
| 4 | version = '0.3' |
|---|
| 5 | |
|---|
| 6 | setup(name='indytube', |
|---|
| 7 | version=version, |
|---|
| 8 | description="Indytube - downloading, transcoding and bittorrent seeding/tracker server", |
|---|
| 9 | long_description="""\ |
|---|
| 10 | A server for transcoding using mencoder/ffmpeg2theora , and bittorrent metafile creation and seeding""", |
|---|
| 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_classifiers |
|---|
| 19 | keywords='', |
|---|
| 20 | author='andy nicholson', |
|---|
| 21 | author_email='andy@engagemedia.org', |
|---|
| 22 | url='http://plumi.org/wiki/TransCoding', |
|---|
| 23 | license='GPL', |
|---|
| 24 | packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
|---|
| 25 | include_package_data=True, |
|---|
| 26 | zip_safe=False, |
|---|
| 27 | install_requires=[ |
|---|
| 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 | # |
|---|
| 35 | ], |
|---|
| 36 | entry_points=""" |
|---|
| 37 | # -*- Entry points: -*- |
|---|
| 38 | """, |
|---|
| 39 | scripts=['indytube/indytube.py'], |
|---|
| 40 | |
|---|
| 41 | data_files = [ ('/etc/indytube/', ['indytube/indytube.conf']), |
|---|
| 42 | ] , |
|---|
| 43 | ) |
|---|