Commit a2145c05 by Ned Batchelder

Add a setup.py so we can import top-level directories.

parent d35a56bc
# Python libraries to install that are local to the edx-platform repo
-e .
-e common/lib/calc
-e common/lib/capa
-e common/lib/chem
......
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",
],
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment