-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (14 loc) · 782 Bytes
/
setup.py
File metadata and controls
17 lines (14 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
version = '0.1'
setup(name='twitter_video',
version=version,
description="WEB service que almacena y envia videos cortos",
keywords='twitter videos cortos',
author='Juan Ignacio Vasquez',
author_email='ji.vasquez0@gmail.com',
packages=['Twitter_video_web_service'],
include_package_data=True,
zip_safe=False,
install_requires=['django-nonrel', 'mongodb-engine', 'djangotoolbox', 'pymongo'],
dependency_links = ["https://bitbucket.org/wkornewald/django-nonrel/get/be48c152abc6.tar.gz#egg=django-nonrel", "https://bitbucket.org/wkornewald/djangotoolbox/get/a8cdf61ba9c0.tar.gz#egg=djangotoolbox", "https://github.com/django-nonrel/mongodb-engine/tarball/master#egg=mongodb-engine" ],
)