forked from kvoyager/GmdhPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 654 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
from setuptools import find_packages
setup(name='GmdhPy',
version='2.0',
description='Self-organizing deep learning polynomial neural network for Python (Multilayered group method of data handling)',
author='kvoyager',
author_email='konstantin.kolokolov@gmail.com',
url='https://github.com/kvoyager/GmdhPy',
download_url='https://github.com/kvoyager/GmdhPy/archive/master.zip',
license='MIT',
install_requires=['numpy', 'six', 'scikit-learn', 'pandas'],
extras_require={
'graphviz': ['graphviz', 'matplotlib'],
},
packages=find_packages()
)