Commit 1618f721 by Calen Pennington

Modularize capa and mitxmako so that xmodule can properly depend on them

parent 15ab3369
from setuptools import setup, find_packages
setup(
name="capa",
version="0.1",
packages=find_packages(exclude=["tests"]),
install_requires=['distribute'],
)
from setuptools import setup, find_packages
setup(
name="mitxmako",
version="0.1",
packages=find_packages(exclude=["tests"]),
install_requires=['distribute'],
)
...@@ -8,6 +8,10 @@ setup( ...@@ -8,6 +8,10 @@ setup(
package_data={ package_data={
'xmodule': ['js/module/*'] 'xmodule': ['js/module/*']
}, },
requires=[
'capa',
'mitxmako'
],
# See http://guide.python-distribute.org/creation.html#entry-points # See http://guide.python-distribute.org/creation.html#entry-points
# for a description of entry_points # for a description of entry_points
......
...@@ -24,6 +24,8 @@ sympy ...@@ -24,6 +24,8 @@ sympy
newrelic newrelic
glob2 glob2
pymongo pymongo
-e common/lib/capa
-e common/lib/mitxmako
-e common/lib/xmodule -e common/lib/xmodule
django_nose django_nose
nosexcover nosexcover
......
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