31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="XModule",
|
|
version="0.1",
|
|
packages=find_packages(),
|
|
install_requires=['distribute'],
|
|
package_data={
|
|
'': ['js/*']
|
|
},
|
|
|
|
# See http://guide.python-distribute.org/creation.html#entry-points
|
|
# for a description of entry_points
|
|
entry_points={
|
|
'xmodule.v1': [
|
|
"Course = seq_module:SectionDescriptor",
|
|
"Week = seq_module:SectionDescriptor",
|
|
"Section = seq_module:SectionDescriptor",
|
|
"LectureSequence = seq_module:SectionDescriptor",
|
|
"Lab = seq_module:SectionDescriptor",
|
|
"Homework = seq_module:SectionDescriptor",
|
|
"TutorialIndex = seq_module:SectionDescriptor",
|
|
"Exam = seq_module:SectionDescriptor",
|
|
"VideoSegment = video_module:VideoSegmentDescriptor",
|
|
"ProblemSet = seq_module:SectionDescriptor",
|
|
"Problem = capa_module:CapaModuleDescriptor",
|
|
"HTML = html_module:HtmlModuleDescriptor",
|
|
]
|
|
}
|
|
)
|