- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
14 lines (13 loc) · 440 Bytes
/
Copy pathsetup.py
File metadata and controls
14 lines (13 loc) · 440 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fromsetuptoolsimportsetup, find_packages
setup(
name='nmftools',
version='0.0.1-pre',
description='Implementation of NMF (Non-negative Matrix Factorization) and extension of NMF',
license='MIT',
author='keik',
author_email='k4t0.kei@gmail.com',
url='https://github.com/keik/nmftools.git',
keywords='nmf semi-supervised algebra matrix statistics',
packages=find_packages(),
install_requires=[],
)