-
Notifications
You must be signed in to change notification settings - Fork 163
/
setup.py
38 lines (36 loc) · 1.53 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="fuxictr",
version="2.3.6",
author="RECZOO",
description="A configurable, tunable, and reproducible library for CTR prediction",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/reczoo/FuxiCTR",
download_url='https://github.com/reczoo/FuxiCTR/tags',
packages=setuptools.find_packages(
exclude=["model_zoo", "tests", "data", "docs", "demo"]),
include_package_data=True,
python_requires=">=3.6",
install_requires=["keras_preprocessing", "pandas", "PyYAML>=5.1", "scikit-learn",
"numpy", "h5py", "tqdm", "pyarrow", "polars"],
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',
'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=['ctr prediction', 'recommender systems',
'ctr', 'cvr', 'pytorch'],
)