setup.py 354 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
from setuptools import setup, find_packages

setup(
    name="Open edX",
    version="0.1",
    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.
    packages=[
        "lms",
        "cms",
        "i18n",
    ],
)