-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 768 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name = 'networks',
packages = ['networks','networks/layers','networks/layers/util/','networks/layers/descent/'],
version = '0.3.7', # Ideally should be same as your GitHub release tag varsion
description = 'Allows to create NN models',
author = 'Shharrnam Chhatpar',
author_email = 'sharnam19.nc@gmail.com',
url = 'https://github.com/sharnam19/Networks',
download_url = 'https://github.com/sharnam19/Networks/archive/v0.3.7.tar.gz',
keywords = ['machine-learning', 'deep-learning','neural-networks','linear regression',
'logistic regression'],
classifiers = [],
install_requires=[
'jsonpickle',
'numpy',
'scipy',
'matplotlib'
]
)