forked from gbolmier/funk-svd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.15 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
31
32
33
34
35
36
37
38
import os
from setuptools import find_packages
from setuptools import setup
about = {}
with open(os.path.join(os.getcwd(), 'funk_svd/__version__.py')) as f:
exec(f.read(), about)
setup(
author="Geoffrey Bolmier",
author_email="geoffrey.bolmier@gmail.com",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
],
description="A python fast implementation of the famous SVD algorithm "
"popularized by Simon Funk during Netflix Prize",
install_requires=[
"numba>=0.38.0",
"numpy>=1.14.3",
"pandas>=0.23.0",
],
license="MIT",
name="funk-svd",
packages=find_packages(),
python_requires=">=3.6.5",
url="http://github.com/gbolmier/funk-svd",
version=about['__version__'],
)