From e6ab6513a51e6b45c5138e813f941430b81dd84d Mon Sep 17 00:00:00 2001 From: Takuya Kitazawa Date: Thu, 13 Jan 2022 06:49:59 -0800 Subject: [PATCH] Bump version to 0.0.4 --- flurs/__init__.py | 2 +- setup.py | 38 ++++++++++++++++++++------------------ 2 files changed, 21 insertions(+), 19 deletions(-) diff --git a/flurs/__init__.py b/flurs/__init__.py index a014043..8f08ee1 100644 --- a/flurs/__init__.py +++ b/flurs/__init__.py @@ -6,6 +6,6 @@ logger.setLevel(DEBUG) logger.addHandler(handler) -__version__ = '0.0.3' +__version__ = '0.0.4' __all__ = ['baseline', 'data', 'datasets', 'recommender', 'utils'] diff --git a/setup.py b/setup.py index 234e6ae..b9d42e9 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,11 @@ -"""FluRS -============ - -FluRS is a Python library for online item recommendation. The name indicates Flu-* (Flux, Fluid, Fluent) recommender systems which incrementally adapt to dynamic user-item interactions in a streaming environment. - -""" import flurs VERSION = flurs.__version__ DISTNAME = 'flurs' DESCRIPTION = 'A library for streaming recommendation algorithms' -LONG_DESCRIPTION = __doc__ or '' +with open('README.md') as f: + LONG_DESCRIPTION = f.read() +LONG_DESCRIPTION_CONTENT_TYPE = 'text/markdown' AUTHOR = 'Takuya Kitazawa' AUTHOR_EMAIL = 'k.takuti@gmail.com' MAINTAINER = AUTHOR @@ -27,6 +23,7 @@ def setup_package(): version=VERSION, description=DESCRIPTION, long_description=LONG_DESCRIPTION, + long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE, author=AUTHOR, author_email=AUTHOR_EMAIL, maintainer=MAINTAINER, @@ -34,17 +31,22 @@ def setup_package(): license=LICENSE, url=URL, download_url=DOWNLOAD_URL, - classifiers=['Intended Audience :: Science/Research', - 'Intended Audience :: Developers', - 'License :: OSI Approved', - 'Programming Language :: Python', - 'Topic :: Scientific/Engineering', - 'Operating System :: Unix', - 'Operating System :: MacOS', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9'], + classifiers=[ + 'Intended Audience :: Science/Research', + 'Intended Audience :: Developers', + 'License :: OSI Approved', + 'Programming Language :: Python', + 'Topic :: Scientific/Engineering', + 'Development Status :: 4 - Beta', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX', + 'Operating System :: Unix', + 'Operating System :: MacOS', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9' + ], packages=find_packages(exclude=['*tests*']), install_requires=[ 'numpy',