Skip to content

Commit

Permalink
Bump version to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
takuti committed Jan 13, 2022
1 parent 7ea1c35 commit e6ab651
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 19 deletions.
2 changes: 1 addition & 1 deletion flurs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
logger.setLevel(DEBUG)
logger.addHandler(handler)

__version__ = '0.0.3'
__version__ = '0.0.4'

__all__ = ['baseline', 'data', 'datasets', 'recommender', 'utils']
38 changes: 20 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -27,24 +23,30 @@ 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,
maintainer_email=MAINTAINER_EMAIL,
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',
Expand Down

0 comments on commit e6ab651

Please sign in to comment.