setup.py 746 Bytes
Newer Older
1 2 3 4 5
"""
Setup script for the Open edX package.
"""

from setuptools import setup
6 7 8

setup(
    name="Open edX",
9
    version="0.2",
10 11 12
    install_requires=['distribute'],
    requires=[],
    # NOTE: These are not the names we should be installing.  This tree should
13
    # be reorganized to be a more conventional Python tree.
14
    packages=[
15
        "openedx.core.djangoapps.user_api",
16
        "openedx.core.djangoapps.course_groups",
17 18 19
        "lms",
        "cms",
    ],
20 21 22
    entry_points={
        'openedx.user_partition_scheme': [
            'random = openedx.core.djangoapps.user_api.partition_schemes:RandomUserPartitionScheme',
23
            'cohort = openedx.core.djangoapps.course_groups.partition_scheme:CohortPartitionScheme',
24 25
        ],
    }
26
)