-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
38 lines (36 loc) · 1.47 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 setuptools
with open("README.md", "r", encoding="utf-8") as fd:
long_description = fd.read()
setuptools.setup(
name="recbox",
version="0.0.4",
author="RECZOO",
author_email="[email protected]",
description="A box of core libraries for recommendation model development",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/reczoo/RecBox",
download_url='https://github.com/reczoo/RecBox/tags',
packages=setuptools.find_packages(
exclude=["tests", "demo"]),
include_package_data=True,
python_requires=">=3.6",
install_requires=["pandas", "numpy", "h5py", "PyYAML", "scikit-learn", "tqdm"],
classifiers=(
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
),
license="Apache-2.0 License",
keywords=['recommender systems', 'ctr prediction',
'tensorflow', 'pytorch'],
)