add setup.py

This commit is contained in:
Matthew Johnson 2018-11-18 15:17:32 -08:00
parent 489dd1c81a
commit 9584c4f55a

14
setup.py Normal file
View File

@ -0,0 +1,14 @@
from setuptools import setup
setup(
name='jax',
version='0.0',
description='Differentiate, compile, and transform Numpy code.',
author='JAX team',
author_email='jax-team@google.com',
packages=['jax', 'jax.lib', 'jax.interpreters', 'jax.numpy', 'jax.scipy',
'jax.experimental'],
install_requires=['numpy>=1.12', 'six', 'protobuf'],
url='https://github.com/google/jax',
license='Apache-2.0',
)