Find IPython's package_data.
()
| 110 | #--------------------------------------------------------------------------- |
| 111 | |
| 112 | def 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 | |
| 129 | def check_package_data(package_data): |