-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 888 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
from setuptools import setup, find_packages
install_requires = ['panda>=0.1.4', 'django']
try:
import json
except ImportError:
install_requires.append('simplejson>=2.1.0')
setup(
name = "panda_example_django",
version = "1.1",
packages = find_packages(),
author = "New Bamboo",
author_email = "[email protected]",
description = "An example of how to integrate Panda on your Django application",
url = "http://github.com/newbamboo/panda_example_django",
install_requires=install_requires,
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
],
license='MIT',
keywords='panda video encoding stream service example',
)