Skip to content

Commit

Permalink
Added author email
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgenkg committed Apr 23, 2016
1 parent 1d34d1b commit cf10f8e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

setup(
name = 'nimblenet',
packages = ['nimblenet'], # this must be the same as the name above
version = '0.7',
description = 'Efficient python (NumPy) neural network library.',
long_description = 'This is an efficient implementation of a fully connected neural network in NumPy. The network can be trained by a variety of learning algorithms: backpropagation, resilient backpropagation and scaled conjugate gradient learning. The network has been developed with PYPY in mind.',
author = 'Jorgen Grimnes',
author_email = '[email protected]',
url = 'http://jorgenkg.github.io/python-neural-network/', # use the URL to the github repo
download_url = 'https://github.com/jorgenkg/python-neural-network/tarball/0.7', # I'll explain this in a second
keywords='python numpy neuralnetwork neural network efficient',
install_requires = [ 'numpy' ],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)

0 comments on commit cf10f8e

Please sign in to comment.