-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
55 lines (46 loc) · 1.42 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""Setup for feedback XBlock."""
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
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='feedback-xblock',
version='2.0.0',
description='XBlock for providing feedback on course content',
long_description=README,
long_description_content_type='text/x-rst',
packages=find_packages(
include=[
"feedback",
"feedback.*",
"feedbacktests.*",
],
exclude=["*tests"],
),
include_package_data=True,
install_requires=[
'XBlock',
],
entry_points={
'xblock.v1': [
'feedback = feedback.feedback:FeedbackXBlock',
],
'xblock.test.v0': [
'feedbacktest = feedbacktests:TestFeedback',
],
"lms.djangoapp": [
"feedback = feedback.apps:FeedbackConfig",
],
},
package_data=package_data("feedback", ["static", "public", "templates", "translations"]),
)