Show More
@@ -16,7 +16,6 b' graft IPython/tools' | |||
|
16 | 16 | graft docs |
|
17 | 17 | exclude docs/\#* |
|
18 | 18 | exclude docs/man/*.1 |
|
19 | exclude docs/ChangeLog.* | |
|
20 | 19 | |
|
21 | 20 | # There seems to be no way of excluding whole subdirectories, other than |
|
22 | 21 | # manually excluding all their subdirs. distutils really is horrible... |
@@ -124,7 +124,11 b' def find_package_data():' | |||
|
124 | 124 | """ |
|
125 | 125 | # This is not enough for these things to appear in an sdist. |
|
126 | 126 | # We need to muck with the MANIFEST to get this to work |
|
127 | package_data = {'IPython.UserConfig' : ['*'] } | |
|
127 | package_data = { | |
|
128 | 'IPython.UserConfig' : ['*'], | |
|
129 | 'IPython.tools.tests' : ['*.txt'], | |
|
130 | 'IPython.testing' : ['*.txt'] | |
|
131 | } | |
|
128 | 132 | return package_data |
|
129 | 133 | |
|
130 | 134 |
General Comments 0
You need to be logged in to leave comments.
Login now