From aa2dfa94463feed44c27685f80a93cf64c25e018 Mon Sep 17 00:00:00 2001 From: Felipe Lacerda Date: Wed, 5 Apr 2017 11:23:27 +0200 Subject: [PATCH] Fix path for grammar files in MANIFEST --- MANIFEST.in | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index f25326a99..e2ff1cbef 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -8,7 +8,7 @@ include conftest.py include pytest.ini include tox.ini include jedi/evaluate/compiled/fake/*.pym -include jedi/parser/grammar*.txt +include jedi/parser/python/grammar*.txt recursive-include test * recursive-include docs * recursive-exclude * *.pyc diff --git a/setup.py b/setup.py index c4436d3cf..633dfe918 100755 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ description='An autocompletion tool for Python that can be used for text editors.', author=__AUTHOR__, author_email=__AUTHOR_EMAIL__, + include_package_data=True, maintainer=__AUTHOR__, maintainer_email=__AUTHOR_EMAIL__, url='https://github.com/davidhalter/jedi',