From cfaea186cc12cbf447a6899dba2d4331435aec94 Mon Sep 17 00:00:00 2001 From: quillcraftsman Date: Tue, 16 Apr 2024 17:22:22 +0300 Subject: [PATCH] migrate on other domain --- CONTRIBUTING.md | 2 +- README.md | 12 +++++------- find_similar/package.py | 4 ++-- setup.py | 2 +- 4 files changed, 9 insertions(+), 11 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 27e6b23..752e7bf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -38,4 +38,4 @@ You can check [Developer Documentation][developer-documentation-path] to easy st [issues-path]: https://github.com/findsimilar/find-similar/issues [discussions-path]: https://github.com/findsimilar/find-similar/discussions -[developer-documentation-path]: https://docs.findsimilar.org/dev_documentation.html \ No newline at end of file +[developer-documentation-path]: https://findsimilar.craftsman.lol/dev_documentation.html \ No newline at end of file diff --git a/README.md b/README.md index 7bd9017..3dddd50 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,6 @@ User-friendly library to find similar objects You can find **Full Project Documentation** [here][documentation_path] -First you can try our [DEMO WEBAPP](http://demo.findsimilar.org/) for a quick introduction to the `find-similar` -
#### Workflows @@ -103,12 +101,12 @@ Find similar texts ## Requirements - nltk, pymorphy3 -- See more in [Full Documentation](https://docs.findsimilar.org/about.html#requirements) +- See more in [Full Documentation](https://findsimilar.craftsman.lol/about.html#requirements) ## Development Status - Package already available on [PyPi](https://pypi.org/project/find-similar/) -- See more in [Full Documentation](https://docs.findsimilar.org/about.html#development-status) +- See more in [Full Documentation](https://findsimilar.craftsman.lol/about.html#development-status) ## Install @@ -118,7 +116,7 @@ Find similar texts pip install find-similar ``` -See more in [Full Documentation](https://docs.findsimilar.org/install.html) +See more in [Full Documentation](https://findsimilar.craftsman.lol/install.html) ## Quickstart @@ -146,10 +144,10 @@ find_similar(text_to_compare, texts, count=10) You are welcome! To easy start please check: - [Full Documentation][documentation_path] - [Contributing](CONTRIBUTING.md) -- [Developer Documentation](https://docs.findsimilar.org/dev_documentation.html) +- [Developer Documentation](https://findsimilar.craftsman.lol/dev_documentation.html) - [Code of Conduct](CODE_OF_CONDUCT.md) - [Security Policy](SECURITY.md) - [Governance](GOVERNANCE.md) - [Support](SUPPORT.md) -[documentation_path]: https://docs.findsimilar.org \ No newline at end of file +[documentation_path]: https://findsimilar.craftsman.lol \ No newline at end of file diff --git a/find_similar/package.py b/find_similar/package.py index c44d606..fc64e7a 100644 --- a/find_similar/package.py +++ b/find_similar/package.py @@ -2,5 +2,5 @@ Package info """ name = 'find-similar' -version = '2.1.0' -status = '4 - Beta' +version = '2.2.0' +status = '5 - Production/Stable' diff --git a/setup.py b/setup.py index 7d856f1..fd6a2ca 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ def get_value_from_package_info(line, value, old_value): raise RuntimeError("Unable to determine Package Info.") PROJECT_URLS = { - 'Documentation': 'https://docs.findsimilar.org', + 'Documentation': 'https://findsimilar.craftsman.lol', 'Source': 'https://github.com/findsimilar/find-similar', 'Tracker': 'https://github.com/findsimilar/find-similar/issues', 'Release notes': 'https://github.com/findsimilar/find-similar/releases',