-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 840 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup, find_packages
setup(name='libNMF',
version='0.1.2',
description='Optimization and Regularization variants of NMF',
author='Satwik Bhattamishra',
author_email='satwik55@gmail.com',
url='https://github.com/satwik77/libnmf/',
packages = find_packages(),
license = 'MIT',
install_requires=['numpy>=1.1.0', 'scipy>=1.1.0', 'cvxopt>=1.2.0'],
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)