forked from StreetVoice/django-elastic-transcoder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1008 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
from dj_elastictranscoder import __version__
setup(
name='django-elastic-transcoder',
version=__version__,
description="Django with AWS elastic transcoder",
long_description=open("README.rst").read(),
author='tzangms',
author_email='tzangms@streetvoice.com',
url='http://github.com/StreetVoice/django-elastic-transcoder',
license='MIT',
test_suite='runtests.runtests',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires = [
"django >= 1.7",
"boto >= 2.5",
],
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
"Framework :: Django",
],
keywords='django,aws,elastic,transcoder',
)