-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
], | ||
) |