Need help to find declarations on PyCharm

I'm using PyCharm for Plone add-on development. And my PyCharm installation is already well aware of the plone declarations.

But when I try to look at the declaration of zope.schema. It says Cannot find declaration to go to. Later when I looked at the declaration of zope itself, it takes me to this file

/eggs/zope.viewlet-3.7.2-py2.7.egg/zope/__init__.py

which has a single declaration

__import__('pkg_resources').declare_namespace(__name__)

So, I wonder if there's a way to look at zope and similar other declarations directly from PyCharm?

Sounds like Use paths from script:

https://www.jetbrains.com/help/pycharm/buildout-support.html

Thanks this helps :slight_smile: