Read week headings from mongodb
This commit is contained in:
committed by
Matthew Mongeau
parent
31871a0548
commit
bb2910fce5
14
common/lib/xmodule/setup.py
Normal file
14
common/lib/xmodule/setup.py
Normal 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",
|
||||
]
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user