Skip to content

Commit

Permalink
Made FunkyYak into a package
Browse files Browse the repository at this point in the history
  • Loading branch information
duvenaud committed Mar 5, 2015
1 parent fd8c2a3 commit c420014
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ scratch/
examples/data
.idea/
.DS_Store
build/
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,13 @@ plt.plot(x, map(tanh, x),
```

<img src="https://github.com/HIPS/FunkyYak/blob/master/examples/tanh.png" width="600">

## How to install:

Simply run

```bash
git clone https://github.com/HIPS/FunkyYak.git
cd FunkyYak/
python setup.py install
```
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from distutils.core import setup

setup(name='FunkyYak',
version='1.0',
description='FunkyYak: Computes derivatives of complicated numpy code.',
author='Dougal Maclaurin and David Duvenaud',
author_email = "macLaurin@physics.harvard.edu, dduvenaud@seas.harvard.edu",
packages=['funkyyak'],
long_description="Stateless reverse-mode autodiff implementation that also offers higher-order derivatives.")

0 comments on commit c420014

Please sign in to comment.