I have added the tagging in my app:
from setuptools import setup
setup(
name='YourAppName',
version='1.0',
description='OpenShift App',
author='Your Name',
author_email='example@example.com',
url='http://www.python.org/sigs/distutils-sig/',
install_requires=['Django>=1.3','MySQL-python','tagging',],
)
After git push
, an error shows that:
ImportError: cannot import name parse_lookup
How can I fix this error? Thanks for your help at first!