From: Ɓukasz Langa Date: Wed, 14 Mar 2018 21:16:34 +0000 (-0700) Subject: Include Grammar.txt in the distribution X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/b1075f8b023a6e9f57f19404ee01137fdf5b6994 Include Grammar.txt in the distribution --- diff --git a/MANIFEST.in b/MANIFEST.in index 9ae6851..c7cfe22 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include *.rst *.md LICENSE +recursive-include blib2to3 *.txt *.py recursive-include tests *.txt *.py diff --git a/setup.py b/setup.py index a64482c..0e2af3f 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ setup( license='MIT', py_modules=['black'], packages=['blib2to3', 'blib2to3.pgen2'], + package_data={'blib2to3': ['*.txt']}, python_requires=">=3.6", zip_safe=False, install_requires=['click', 'attrs'],