Add base support for cohorted group configurations
TNL-649
This commit is contained in:
16
setup.py
16
setup.py
@@ -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',
|
||||
],
|
||||
}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user