Commit fda78bce authored by Kirill Smelkov's avatar Kirill Smelkov

setup: Install golang/testdata/... as well

We describe golang/testdata/ in MANIFEST.in, and that makes testdata to
be included into sdist. However testdata does not get installed.

Since, we want to be able to run pygolang tests, even on installed
package, we need the testdata files to be present there as well.

Fix it.

See https://setuptools.readthedocs.io/en/latest/setuptools.html#including-data-files
for setuptools-related details.
parent 1685fede
......@@ -36,6 +36,7 @@ setup(
keywords = 'go channel goroutine GOPATH python import',
packages = find_packages(),
include_package_data = True,
install_requires = ['six', 'decorator'],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment