-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
24 lines (24 loc) · 849 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import find_packages, setup
print find_packages(exclude=['DEPneuralpy'])
setup(
name='neuralpy',
version='1.3.0',
description='neuralpy - The most intuitive Neural Network Model',
author='Jonathan N. Lee',
keywords='neuralpy neural networks',
author_email='jonathan_lee@berkeley.edu',
url='https://github.com/jon--lee/neuralpy',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
install_requires=['numpy==1.9.2', 'matplotlib==1.4.3'],
packages=find_packages(exclude=['DEPneuralpy'])
)