move mixin to evaluate directory

This commit is contained in:
Dave Halter
2013-12-27 01:35:33 +01:00
parent c290afbb1a
commit 4ec64a9763
10 changed files with 2 additions and 2 deletions

View File

@@ -165,7 +165,7 @@ class BuiltinModule(modules.CachedModule):
if name == '__builtin__' and not is_py3k:
name = 'builtins'
path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
path = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(path, 'mixin', name) + '.pym') as f:
s = f.read()
except IOError:

View File

@@ -27,7 +27,7 @@ setup(name='jedi',
keywords='python completion refactoring vim',
long_description=readme,
packages=['jedi', 'jedi.parser', 'jedi.evaluate'],
package_data={'jedi': ['mixin/*.pym']},
package_data={'jedi': ['evlaluate/evaluate/mixin/*.pym']},
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',