Files
edx-platform/common/lib/capa/setup.py
2013-03-04 17:06:39 -05:00

9 lines
202 B
Python

from setuptools import setup, find_packages
setup(
name="capa",
version="0.1",
packages=find_packages(exclude=["tests"]),
install_requires=['distribute==0.6.30', 'pyparsing==1.5.6'],
)