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

This commit is contained in:
Calen Pennington
2012-07-05 12:48:18 -04:00
parent 386acbe1ff
commit e9ee1566d6
26 changed files with 22 additions and 0 deletions

8
common/lib/capa/setup.py Normal file
View File

@@ -0,0 +1,8 @@
from setuptools import setup, find_packages
setup(
name="capa",
version="0.1",
packages=find_packages(exclude=["tests"]),
install_requires=['distribute'],
)

View File

@@ -0,0 +1,8 @@
from setuptools import setup, find_packages
setup(
name="mitxmako",
version="0.1",
packages=find_packages(exclude=["tests"]),
install_requires=['distribute'],
)

View File

@@ -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

View File

@@ -24,6 +24,8 @@ sympy
newrelic
glob2
pymongo
-e common/lib/capa
-e common/lib/mitxmako
-e common/lib/xmodule
django_nose
nosexcover