-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* defined accessor for Gibbs sampler * Fix long_description (as it fails to upload) * add accessor for variational fm * fix test
- Loading branch information
Showing
5 changed files
with
178 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,8 @@ | |
"typing-extensions>=4.0.0", | ||
] | ||
|
||
|
||
TEST_BUILD = os.environ.get("TEST_BUILD", None) is not None | ||
CURRENT_DIR = Path(__file__).resolve().parent | ||
README_FILE = CURRENT_DIR / "README.md" | ||
|
||
|
||
class get_eigen_include(object): | ||
|
@@ -87,7 +87,8 @@ def local_scheme(version: Any) -> str: | |
url="https://github.com/tohtsky/myfm", | ||
author_email="[email protected]", | ||
description="Yet another Bayesian factorization machines.", | ||
long_description="", | ||
long_description=README_FILE.read_text(), | ||
long_description_content_type="text/markdown", | ||
ext_modules=ext_modules, | ||
install_requires=install_requires, | ||
cmdclass={"build_ext": build_ext}, | ||
|
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