forked from openedx/XBlock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 894 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 894 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
"""Set up for XBlock"""
from setuptools import setup
setup(
name='XBlock',
version='0.3',
description='XBlock Core Library',
packages=['xblock'],
install_requires=[
'webob',
],
entry_points={
'xblock.v1': [
'helloworld = xblock.content:HelloWorldBlock',
'html = xblock.content:HtmlBlock',
'sequence = xblock.structure:Sequence',
'vertical = xblock.structure:VerticalBlock',
'sidebar = xblock.structure:SidebarBlock',
'problem = xblock.problem:ProblemBlock',
'textinput = xblock.problem:TextInputBlock',
'equality = xblock.problem:EqualityCheckerBlock',
'attempts_scoreboard = xblock.problem:AttemptsScoreboardBlock',
'slider = xblock.slider:Slider',
'view_counter = xblock.view_counter:ViewCounter'
]
}
)