25 lines
596 B
Python
25 lines
596 B
Python
"""
|
|
Setup script for the Open edX package.
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="Open edX",
|
|
version="0.2",
|
|
install_requires=['distribute'],
|
|
requires=[],
|
|
# NOTE: These are not the names we should be installing. This tree should
|
|
# 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',
|
|
],
|
|
}
|
|
)
|