Revert "get_version is not needed in data_files"

This reverts commit 403442d6b1.

It turns out that without `get_version` in `data_files`, trying to install Hy from a setuptools-produced source distribution fails with an error that `get_version` can't be found.
This commit is contained in:
Kodi Arfer 2019-05-20 10:19:15 -04:00
parent 4ba0691c97
commit bd7b8bf5e1

View File

@ -62,6 +62,9 @@ setup(
'hy.core': ['*.hy', '__pycache__/*'],
'hy.extra': ['*.hy', '__pycache__/*'],
},
data_files=[
('get_version', ['get_version.py'])
],
author="Paul Tagliamonte",
author_email="tag@pault.ag",
long_description=long_description,