forked from NicolasHug/Surprise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
26 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
else: | ||
USE_CYTHON = True | ||
|
||
__version__ = '1.0.0' | ||
__version__ = '1.0.1' | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
|
@@ -58,16 +58,15 @@ | |
ext_modules = extensions | ||
|
||
setup( | ||
name='surprise', | ||
name='scikit-surprise', | ||
author='Nicolas Hug', | ||
author_email='[email protected]', | ||
|
||
description=('A recommender system package aimed towards researchers ' + | ||
'and students.'), | ||
description=('An easy-to-use library for recommender systems.'), | ||
long_description=long_description, | ||
|
||
version=__version__, | ||
url='https://nicolashug.github.io/Surprise/', | ||
url='http://surpriselib.com', | ||
|
||
license='GPLv3+', | ||
classifiers=[ | ||
|
@@ -82,7 +81,7 @@ | |
], | ||
keywords='recommender recommendation system', | ||
|
||
packages=find_packages(exclude=['docs', 'tests*']), | ||
packages=find_packages(exclude=['tests*']), | ||
include_package_data=True, | ||
ext_modules = ext_modules, | ||
cmdclass=cmdclass, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters