forked from Cediddi/cmsplugin-filer-html5video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.08 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
35
36
37
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
install_requires = [
'django-cms>=2.1.3',
'django-sekizai',
'django-filer>=0.8.6',
]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "cmsplugin-filer-html5video",
version = "0.2",
url = 'https://github.com/piquadrat/cmsplugin-filer-html5video',
license = 'BSD',
description = "HTML5 video plugin for django CMS and django-filer, using VideoJS",
long_description = read('README.rst'),
author = 'Benjamin Wohlwend & Other Contributors',
author_email = '[email protected]',
packages = find_packages(),
install_requires = install_requires,
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
include_package_data=True,
zip_safe = False
)