make setup.py copy over .so files

This commit is contained in:
Matthew Johnson 2018-11-18 15:28:22 -08:00
parent 1b836515c2
commit 0dfa736ece

View File

@ -1,4 +1,5 @@
from setuptools import setup
from glob import glob
setup(
name='jax',
@ -11,4 +12,5 @@ setup(
install_requires=['numpy>=1.12', 'six', 'protobuf'],
url='https://github.com/google/jax',
license='Apache-2.0',
package_data={'jax.lib': glob('jax/lib/*.so')},
)