##// END OF EJS Templates
package_data was missing the .txt files in the testing directories. This was causing ...
Brian E Granger -
Show More
@@ -16,7 +16,6 b' graft IPython/tools'
16 graft docs
16 graft docs
17 exclude docs/\#*
17 exclude docs/\#*
18 exclude docs/man/*.1
18 exclude docs/man/*.1
19 exclude docs/ChangeLog.*
20
19
21 # There seems to be no way of excluding whole subdirectories, other than
20 # There seems to be no way of excluding whole subdirectories, other than
22 # manually excluding all their subdirs. distutils really is horrible...
21 # manually excluding all their subdirs. distutils really is horrible...
@@ -124,7 +124,11 b' def find_package_data():'
124 """
124 """
125 # This is not enough for these things to appear in an sdist.
125 # This is not enough for these things to appear in an sdist.
126 # We need to muck with the MANIFEST to get this to work
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 return package_data
132 return package_data
129
133
130
134
General Comments 0
You need to be logged in to leave comments. Login now