From d7742bf13bc65979dd240bc7d90b459e7a9ea438 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Thu, 26 Nov 2020 13:36:44 +0100 Subject: [PATCH] Py3 Runtime: distribute the tests in the sdist --- contributors.txt | 3 ++- runtime/Python3/MANIFEST.in | 3 ++- runtime/Python3/setup.py | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/contributors.txt b/contributors.txt index a11dc27f2..39fca69fe 100644 --- a/contributors.txt +++ b/contributors.txt @@ -279,4 +279,5 @@ YYYY/MM/DD, github id, Full name, email 2020/10/16, adarshbhat, Adarsh Bhat, adarshbhat@users.noreply.github.com 2020/10/20, adamwojs, Adam Wójs, adam[at]wojs.pl 2020/10/24, cliid, Jiwu Jang, jiwujang@naver.com -2020/11/05, MichelHartmann, Michel Hartmann, MichelHartmann@users.noreply.github.com \ No newline at end of file +2020/11/05, MichelHartmann, Michel Hartmann, MichelHartmann@users.noreply.github.com +2020/11/26, mr-c, Michael R. Crusoe, 1330696+mr-c@users.noreply.github.com diff --git a/runtime/Python3/MANIFEST.in b/runtime/Python3/MANIFEST.in index 86604e496..019762d26 100644 --- a/runtime/Python3/MANIFEST.in +++ b/runtime/Python3/MANIFEST.in @@ -1 +1,2 @@ -include *.txt \ No newline at end of file +include *.txt +recursive-include test *.py *.c diff --git a/runtime/Python3/setup.py b/runtime/Python3/setup.py index 90b09c52d..bd0d3e4b4 100644 --- a/runtime/Python3/setup.py +++ b/runtime/Python3/setup.py @@ -12,5 +12,6 @@ setup( license='BSD', author='Eric Vergnaud, Terence Parr, Sam Harwell', author_email='eric.vergnaud@wanadoo.fr', + scripts=["bin/pygrun"], description='ANTLR 4.9 runtime for Python 3.7' )