From b1075f8b023a6e9f57f19404ee01137fdf5b6994 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Langa?= Date: Wed, 14 Mar 2018 14:16:34 -0700 Subject: [PATCH] Include Grammar.txt in the distribution --- MANIFEST.in | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) 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'], -- 2.39.2