Commit e9ee1566 by Calen Pennington

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

parent 386acbe1
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(
package_data={
'xmodule': ['js/module/*']
},
requires=[
'capa',
'mitxmako'
],
# See http://guide.python-distribute.org/creation.html#entry-points
# for a description of entry_points
......
......@@ -24,6 +24,8 @@ sympy
newrelic
glob2
pymongo
-e common/lib/capa
-e common/lib/mitxmako
-e common/lib/xmodule
django_nose
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