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:
@@ -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
15
setup.py
Normal 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",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user