forked from StreetVoice/django-elastic-transcoder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (32 loc) · 1.09 KB
/
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
33
34
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='[email protected]',
url='http://github.com/StreetVoice/django-elastic-transcoder',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"django >= 1.8",
"boto3 >= 1.1",
],
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
"Framework :: Django",
],
keywords='django,aws,elastic,transcoder',
)