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' )