Add base support for cohorted group configurations

TNL-649
This commit is contained in:
Andy Armstrong
2014-10-23 18:35:42 -04:00
parent 699b3d08f0
commit 356b2335e9
90 changed files with 1534 additions and 567 deletions

View File

@@ -1,14 +1,24 @@
from setuptools import setup, find_packages
"""
Setup script for the Open edX package.
"""
from setuptools import setup
setup(
name="Open edX",
version="0.1",
version="0.2",
install_requires=['distribute'],
requires=[],
# NOTE: These are not the names we should be installing. This tree should
# be reorgnized to be a more conventional Python tree.
# be reorganized to be a more conventional Python tree.
packages=[
"openedx.core.djangoapps.user_api",
"lms",
"cms",
],
entry_points={
'openedx.user_partition_scheme': [
'random = openedx.core.djangoapps.user_api.partition_schemes:RandomUserPartitionScheme',
],
}
)