Read week headings from mongodb

This commit is contained in:
Calen Pennington
2012-06-18 10:08:31 -04:00
committed by Matthew Mongeau
parent 31871a0548
commit bb2910fce5
9 changed files with 115 additions and 147 deletions

View File

@@ -0,0 +1,14 @@
from setuptools import setup, find_packages
setup(
name="XModule",
version="0.1",
packages=find_packages(),
install_requires=['distribute'],
entry_points={
'xmodule.v1': [
"Course = seq_module:CourseModuleDescriptor",
"Chapter = seq_module:ChapterModuleDescriptor",
]
}
)