forked from IONISx/xblock-pdf
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
39 lines (32 loc) · 934 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
34
35
36
37
38
39
"""Setup for pdf XBlock."""
import os
from setuptools import setup
def package_data(pkg, roots):
"""
Generic function to find package_data.
All of the files under each of the `roots` will be declared as package data for package `pkg`.
"""
data = []
for root in roots:
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='xblock-pdf',
version='1.1.0',
description='Course component (Open edX XBlock) that provides an easy way to embed a PDF',
packages=[
'pdf',
],
install_requires=[
'XBlock',
'xblock-utils',
],
entry_points={
'xblock.v1': [
'pdf = pdf.pdf:PdfBlock',
]
},
package_data=package_data('pdf', ['static', 'templates', 'translations']),
)