-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
48 lines (40 loc) · 1.33 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
39
40
41
42
43
44
45
46
47
48
from setuptools import find_packages, setup
install_requires = ["numpy", "pandas", "scipy", "scikit-learn"]
setup_requires = ["pytest-runner"]
tests_require = ["pytest", "pytest-cov"]
extras_require = {"test": tests_require}
keywords = [
"recommender",
"nmf",
"matrix factorisation",
"system",
"evaluation metric",
"ranking",
"recsys",
"metric",
"ranking metric",
"performance metric",
]
setup(
name="rexmex",
packages=find_packages(),
version="0.1.3",
license="Apache License, Version 2.0",
description="A General Purpose Recommender Metrics Library for Fair Evaluation.",
author="Benedek Rozemberczki, Sebastian Nilsson, Piotr Grabowski, Charles Tapley Hoyt, Gavin Edwards",
author_email="[email protected]",
url="https://github.com/AstraZeneca/rexmex",
download_url="https://github.com/AstraZeneca/rexmex/archive/v_00103.tar.gz",
keywords=keywords,
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
extras_require=extras_require,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
],
)