Skip to content
Snippets Groups Projects
Commit a2145c05 authored by Ned Batchelder's avatar Ned Batchelder
Browse files

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

parent d35a56bc
Branches
Tags
No related merge requests found
# 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
......
setup.py 0 → 100644
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",
],
)
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