forked from zencoder/zencoder-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 929 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='zencoder',
version='0.6.5',
description='Integration library for Zencoder',
author='Alex Schworer',
author_email='[email protected]',
url='http://github.com/schworer/zencoder-py',
license="MIT License",
install_requires=['requests>=1.0'],
tests_require=['mock', 'nose'],
packages=['zencoder'],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)