-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
26 lines (25 loc) · 1001 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
from setuptools import setup, find_packages
#from distutils.core import setup
setup(
name = 'mkpyros',
packages = find_packages(exclude=['build', '_docs', 'templates']),
version = '0.9.32',
install_requires=[
"numpy",
"scipy",
"cvxopt"
],
license = "MIT",
description = 'Python module for building and evaluating recommender systems for implicit feedback. Full documentation @ http://mkpyros.readthedocs.io/en/latest/',
author = 'Mirko Polato',
author_email = 'mak1788@gmail.com',
url = 'https://github.com/makgyver/pyros',
download_url = 'https://github.com/makgyver/pyros',
keywords = ['recommendation-algorithm', 'collaborative-filtering', 'algorithm', 'kernel'],
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
]
)