Files
edx-platform/setup.py
2014-01-22 12:33:45 -05:00

16 lines
354 B
Python

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",
],
)