Merge pull request #2260 from edx/ned/edx-setup-py

Add a setup.py so we can import top-level directories.
This commit is contained in:
Ned Batchelder
2014-01-22 11:37:33 -08:00
2 changed files with 16 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
# 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

15
setup.py Normal file
View File

@@ -0,0 +1,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",
],
)