Skip to content

Commit 300168e

Browse files
committed
Getting setup.py ready for PyPI
1 parent dd13a90 commit 300168e

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

Diff for: setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

Diff for: setup.py

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
from distutils.core import setup
2-
32
setup(name='autograd',
4-
version='1.0',
5-
description='Autograd: Computes derivatives of complicated numpy code.',
3+
version='1.0.1',
4+
description='Efficiently computes derivatives of numpy code.',
65
author='Dougal Maclaurin and David Duvenaud',
76
87
packages=['autograd', 'autograd.numpy', 'autograd.scipy', 'autograd.scipy.stats'],
9-
long_description="Stateless reverse-mode autodiff implementation that also offers higher-order derivatives.")
8+
keywords=['Automatic differentiation', 'backpropagation', 'gradients',
9+
'machine learning', 'optimization', 'neural networks',
10+
'Python', 'Numpy', 'Scipy'],
11+
url='https://github.com/HIPS/autograd',
12+
download_url='https://github.com/HIPS/autograd/tarball/1.0.1',
13+
license='MIT',
14+
classifiers=['Development Status :: 4 - Beta',
15+
'License :: OSI Approved :: MIT License',
16+
'Programming Language :: Python :: 2.7'])

0 commit comments

Comments
 (0)