forked from jfloff/pywFM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 978 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
# http://python-packaging-user-guide.readthedocs.org/en/latest/distributing/#uploading-your-project-to-pypi
# to publish package:
# 1) python setup.py register
# 2) python setup.py sdist bdist_wheel upload
# 3) Convert pypi documentation (http://devotter.com/converter)
from setuptools import setup
setup(name='pywFM',
version='0.12.3',
description='Python wrapper for libFM',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Information Analysis',
],
keywords='python wrapper libfm factorization machines',
url='http://github.com/jfloff/pywFM',
author='Joao Loff',
author_email='jfloff@gmail.com',
license='MIT',
packages=['pywFM'],
install_requires=[
'numpy',
'scipy',
'scikit-learn',
'pandas'
],
zip_safe=False)