-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 755 Bytes
/
setup.py
File metadata and controls
33 lines (27 loc) · 755 Bytes
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 image-coding xblock"""
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='xblock-image-coding',
version='0.3',
description='Image Coding XBlock',
packages=[
'image_coding',
],
install_requires=[
'XBlock',
],
entry_points={
'xblock.v1': [
'image-coding = image_coding:ImageCodingXBlock',
]
},
package_data=package_data("image_coding", "static"),
)