forked from open-craft/xblock-group-project-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (29 loc) · 1.01 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
38
# -*- coding: utf-8 -*-
# Imports ###########################################################
import os
from setuptools import setup
from group_project_v2.app_config import ENTRYPOINTS
# 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-group-project-v2',
version='0.4',
description='XBlock - Group Project V2',
packages=['group_project_v2'],
install_requires=[
'XBlock',
'xblock-utils',
],
entry_points={
'xblock.v1': ENTRYPOINTS
},
package_data=package_data("group_project_v2", ["templates", "public"]),
)