From 992108823bd2c16dae7e95dbeede1cf60aa11907 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Thu, 28 Dec 2023 21:11:04 +0100 Subject: [PATCH] fix urls --- README.md | 18 +++++++++--------- setup.py | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 04bbe7d..4ff3ba7 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ CyDifflib

- - + Continous Integration @@ -14,8 +14,8 @@ Python versions
- - + GitHub license

@@ -24,10 +24,10 @@ ## 🚀 Benchmarks -The following [benchmark](https://github.com/maxbachmann/CyDifflib/tree/main/bench) compares the performance in the original [difflib](https://docs.python.org/3.10/library/difflib.html) implementation, the library [cdifflib](https://github.com/mduggan/cdifflib) and CyDifflib +The following [benchmark](https://github.com/rapidfuzz/CyDifflib/tree/main/bench) compares the performance in the original [difflib](https://docs.python.org/3.10/library/difflib.html) implementation, the library [cdifflib](https://github.com/mduggan/cdifflib) and CyDifflib

-Benchmark CyDifflib +Benchmark CyDifflib

## ⚙️ Installation @@ -42,7 +42,7 @@ CyDifflib provides binary wheels for all common platforms. For a source build (for example from a SDist packaged) you only require a C++11 compatible compiler. You can install directly from GitHub if you would like. ``` -pip install git+https://github.com/maxbachmann/CyDifflib.git@main +pip install git+https://github.com/rapidfuzz/CyDifflib.git@main ``` ## 📖 Usage @@ -64,11 +64,11 @@ from thefuzz import fuzz ## 👍 Contributing PRs are welcome! -- Found a bug? Report it in form of an [issue](https://github.com/maxbachmann/CyDifflib/issues). Any difference in behavior to difflib is considered as a bug. +- Found a bug? Report it in form of an [issue](https://github.com/rapidfuzz/CyDifflib/issues). Any difference in behavior to difflib is considered as a bug. - Can make something faster? Great! Just avoid external dependencies and remember that external behavior does not change. - Have no time to code? Tell your friends and subscribers about CyDifflib. Thank you :heart: ## ⚠️ License -Copyright 2021-present [Max Bachmann](https://github.com/maxbachmann). `CyDifflib` is free and open-source software licensed under the [MIT License](https://github.com/maxbachmann/CyDifflib/blob/main/LICENSE). +Copyright 2021-present [Max Bachmann](https://github.com/maxbachmann). `CyDifflib` is free and open-source software licensed under the [MIT License](https://github.com/rapidfuzz/CyDifflib/blob/main/LICENSE). diff --git a/setup.py b/setup.py index 4ce64fe..66f6f56 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="cydifflib", version="1.0.1", - url="https://github.com/maxbachmann/cydifflib", + url="https://github.com/rapidfuzz/cydifflib", author="Max Bachmann", author_email="pypi@maxbachmann.de", description="Fast implementation of difflib's algorithms",