MCPcopy Create free account
hub / github.com/ipython/ipython / find_package_data

Function find_package_data

setupbase.py:112–126  ·  view source on GitHub ↗

Find IPython's package_data.

()

Source from the content-addressed store, hash-verified

110#---------------------------------------------------------------------------
111
112def find_package_data():
113 """
114 Find IPython's package_data.
115 """
116 # This is not enough for these things to appear in an sdist.
117 # We need to muck with the MANIFEST to get this to work
118
119 package_data = {
120 'IPython.core' : ['profile/README*'],
121 'IPython.core.tests' : ['*.png', '*.jpg', 'daft_extension/*.py'],
122 'IPython.lib.tests' : ['*.wav'],
123 'IPython.testing.plugin' : ['*.txt'],
124 }
125
126 return package_data
127
128
129def check_package_data(package_data):

Callers 1

setup.pyFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected