forked from mims-harvard/fastGNMF
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 loc) · 1.19 KB
/
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
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='fastGNMF',
version='0.1.1',
author='Kathleen Sucipto',
author_email='[email protected]',
description='A python model for graph-regularized non-negative matrix factorization using faiss library for its similarity search.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/pypa/sampleproject',
packages=find_packages(),
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3',
],
python_requires='>=3.6',
install_requires=['numpy==1.18.1',
'matplotlib==3.1.3',
'seaborn==0.9.0',
'sklearn==0.22.1',
'Pillow==7.0.0']
)