-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 880 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
31
32
33
34
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import re
version = re.search(
'^__version__\s*=\s*"(.*)"', open("rskit/rskit.py").read(), re.M
).group(1)
with open("README.md", "rb") as f:
description = f.read().decode("utf-8")
setup(
name="rskit",
packages=["rskit"],
python_requires=">=3",
entry_points={"console_scripts": ["rskit = rskit.rskit:main"]},
version=version,
description="Toolkit for recommender systems",
long_description=description,
long_description_content_type="text/markdown",
author="Khalil Muhammad",
author_email="[email protected]",
url="https://github.com/micaleel/rskit",
license="MIT",
keywords=[
"personalization",
"recommenders",
"recommender systems",
],
install_requires=["jupyter_client", "jupyter"],
)