-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (30 loc) · 920 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
25
26
27
28
29
30
31
32
33
34
"""Setup script for NMF-NN."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import setuptools
import sys
sys.path.append('./sakurai_nmf')
setuptools.setup(
name='sakurai_nmf',
version='0.0.1',
test_suite='tests',
description=(
'optimize neural network with non-negative matrix factorization'
'algorithms.'),
license='Apache 2.0',
url='http://github.com/ashigirl96/sakurai-nmf',
install_requires=[
'tensorflow-gpu',
'keras',
'agents',
],
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Science/Research',
],
)