forked from longmen21/VideoJSXBlock-Pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 771 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
33
"""Setup for videojsXBlock."""
import os
from setuptools import setup
def package_data(pkg, root):
"""Generic function to find package_data for `pkg` under `root`."""
data = []
for dirname, _, files in os.walk(os.path.join(pkg, root)):
for fname in files:
data.append(os.path.relpath(os.path.join(dirname, fname), pkg))
return {pkg: data}
setup(
name='videojs-xblock',
version='0.1',
description='XBlock to use the Video.js player in edX, instead of the default one.',
packages=[
'videojs',
],
install_requires=[
'XBlock',
],
entry_points={
'xblock.v1': [
'videojs = videojs:videojsXBlock',
]
},
package_data=package_data("videojs", "public"),
)