| 1 | from setuptools import setup, find_packages |
|---|
| 2 | import sys, os |
|---|
| 3 | |
|---|
| 4 | version = '0.3' |
|---|
| 5 | |
|---|
| 6 | setup(name='indytube-backend', |
|---|
| 7 | version=version, |
|---|
| 8 | description="Indytube - downloading, transcoding and bittorrent seeding/tracker server", |
|---|
| 9 | long_description="""\ |
|---|
| 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 | 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='transcoding bittorrent video distribution mencoder ffmpeg2theora ffmpeg', |
|---|
| 20 | author='Andy Nicholson', |
|---|
| 21 | author_email='andy@engagemedia.org', |
|---|
| 22 | url='http://plumi.org/wiki/IndyTube', |
|---|
| 23 | license='GPL', |
|---|
| 24 | packages=find_packages(), |
|---|
| 25 | include_package_data=True, |
|---|
| 26 | zip_safe=False, |
|---|
| 27 | install_requires=[ |
|---|
| 28 | # -*- Extra requirements: -*- |
|---|
| 29 | 'Twisted>=8.1.0', |
|---|
| 30 | 'Cheetah', |
|---|
| 31 | #'ztg' |
|---|
| 32 | # Nevow |
|---|
| 33 | # |
|---|
| 34 | ], |
|---|
| 35 | entry_points = { |
|---|
| 36 | 'console_scripts': [ 'indytube_runner = indytube.runner:run' ], |
|---|
| 37 | }, |
|---|
| 38 | ) |
|---|