Skip to content

Instantly share code, notes, and snippets.

@qoda
Created January 11, 2011 07:34
Show Gist options
  • Save qoda/774162 to your computer and use it in GitHub Desktop.
Save qoda/774162 to your computer and use it in GitHub Desktop.
from setuptools import setup, find_packages
setup(
name='django-mobiletv',
version='mtv.africa.api.generic.1.3',
description='Django mobiletv public facing portal(s) app.',
author='Praekelt Consulting',
author_email='[email protected]',
url='https://github.com/praekelt/django-mobiletv',
packages = find_packages(),
dependency_links = [
'https://github.com/praekelt/django-content/tarball/mtv.generic.0.0.1#egg=django-content-mtv.generic.0.0.1',
'https://github.com/thanethomson/django-form-designer/tarball/0.1.praekelt#egg=django-form-designer-0.1.praekelt',
'https://github.com/praekelt/django-generate/tarball/mtv.generic.0.0.1#egg=django-generate-mtv.generic.0.0.1',
'https://github.com/praekelt/django-mobiletv-api/tarball/mtv.generic.1.3.1#egg=django-mobiletv-api-mtv-generic.1.3.1',
'https://github.com/praekelt/django-playlist/tarball/apps-api.0.0.1#egg=django-playlist-apps-api.0.0.1',
'https://github.com/praekelt/django-pml/tarball/0.0.4#egg=django-pml-0.0.4',
'https://github.com/praekelt/django-publisher/tarball/apps-api.0.0.1#egg=django-publisher-apps-api.0.0.1',
'https://github.com/praekelt/django-touchcounter/tarball/0.0.2#egg=django-touchcounter-0.0.2',
'https://github.com/praekelt/django-tvshow/tarball/apps-api.0.0.1#egg=django-tvshow-apps-api.0.0.1',
'https://github.com/praekelt/django-video/tarball/apps-api.0.0.1#egg=django-video-apps-api.0.0.1',
'https://github.com/praekelt/django-viewutils/tarball/0.0.2#egg=django-viewutils-0.0.2',
'https://github.com/praekelt/python-adactus/tarball/apps-api.0.0.1#egg=python-adactus-apps-api.0.0.1',
'https://github.com/praekelt/python-dstv/tarball/apps-api.0.0.1#egg=python-dstv-apps-api.0.0.1',
],
install_requires = [
'smn-bellville==0.1',
'django-content==mtv.generic.0.0.1',
'django-evolution==0.6.2',
'django-form-designer==0.1.praekelt',
'django-generate==mtv.generic.0.0.1',
'django-haystack==1.0.1-final',
'django-mobiletv-api==mtv-generic.1.3.1',
'django-playlist==apps-api.0.0.1',
'django-pml==0.0.4',
'django-publisher==apps-api.0.0.1',
'django-touchcounter==0.0.2',
'django-tvshow==apps-api.0.0.1',
'django-video==apps-api.0.0.1',
'django-viewutils==0.0.2',
'iso8601==0.1.4',
'pexpect==2.4',
'psycopg2',
'pygeoip==0.1.4',
'python-adactus==apps-api.0.0.1',
'python-dstv==apps-api.0.0.1',
'wadofstuff-django-serializers==1.0.0',
'Whoosh==0.3.18',
'xapian-haystack==1.1.3beta',
],
include_package_data=True,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment