Modularize capa and mitxmako so that xmodule can properly depend on them
This commit is contained in:
8
common/lib/capa/setup.py
Normal file
8
common/lib/capa/setup.py
Normal 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'],
|
||||
)
|
||||
8
common/lib/mitxmako/setup.py
Normal file
8
common/lib/mitxmako/setup.py
Normal 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'],
|
||||
)
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user