1 Star 0 Fork 7

loic_wang/recommenders

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
miguelgfierro 提交于 2020-04-08 12:43 . :bug:
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import time
from setuptools import setup, find_packages
from os import chdir, path, environ
chdir(path.abspath(path.dirname(__file__)))
version = __import__("reco_utils.__init__").VERSION
# Get the long description from the README file
with open(path.join("reco_utils", "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
HASH = environ.get("HASH", None)
if HASH is not None:
version += ".post" + str(int(time.time()))
name = environ.get("LIBRARY_NAME", "reco_utils")
setup(
name=name,
version=version,
description="Recommender System Utilities",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/microsoft/recommenders",
author="RecoDev Team at Microsoft",
author_email="RecoDevTeam@service.microsoft.com",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
keywords="recommendations recommenders recommender system engine machine learning python spark gpu",
package_dir={"reco_utils": "reco_utils"},
packages=find_packages(where=".", exclude=["tests", "scripts"]),
python_requires=">=3.6, <4",
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/loic_wang/recommenders.git
git@gitee.com:loic_wang/recommenders.git
loic_wang
recommenders
recommenders
master

搜索帮助