-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 831 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import *
setup(
name='PyHierarchicalTsetlinMachineCUDA',
version='0.2.7',
author='Ole-Christoffer Granmo',
author_email='ole.granmo@uia.no',
url='https://github.com/cair/PyHierarchicalTsetlinMachineCUDA/',
license='MIT',
description='Hierarchical Tsetlin Machine Architecture.',
long_description='Hierarchical Tsetlin Machine Architecture.',
keywords ='pattern-recognition cuda machine-learning interpretable-machine-learning rule-based-machine-learning propositional-logic tsetlin-machine regression convolution classification multi-layer',
packages=['PyHierarchicalTsetlinMachineCUDA'],
install_requires=[
'numpy',
'pycuda',
'scipy',
'scikit-learn',
'scikit-image',
'networkx',
],
extras_require={
'examples': ['tensorflow', 'matplotlib', 'pygraphviz'],
}
)