forked from guocheng2025/Sequential-Recommendation-Datasets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 973 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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
install_requires = f.read().splitlines()
setup(
name="srdatasets",
version="0.1.4",
author="Cheng Guo",
author_email="guocheng672@gmail.com",
description="A collection of research ready datasets for sequential recommendation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/guocheng2018/sequential-recommendation-datasets",
packages=find_packages(),
python_requires=">=3.6",
install_requires=install_requires,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
],
entry_points={"console_scripts": ["srdatasets=srdatasets.__main__:main"]},
)