forked from openedx/xblock-image-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (27 loc) · 1020 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
# -*- coding: utf-8 -*-
# Imports ###########################################################
import os
from setuptools import setup
# Functions #########################################################
def package_data(pkg, root_list):
"""Generic function to find package_data for `pkg` under `root`."""
data = []
for root in root_list:
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}
# Main ##############################################################
setup(
name='xblock-image-explorer',
version='0.5.0',
description='XBlock - Image Explorer',
packages=['image_explorer'],
install_requires=[
'XBlock',
],
entry_points={
'xblock.v1': 'image-explorer = image_explorer:ImageExplorerBlock',
},
package_data=package_data("image_explorer", ["static", "templates", "public", "translations"]),
)