From 11cd2a1e24c35d1cd1e22aac6d34848cab9dd26e Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Thu, 12 Mar 2026 21:32:19 +0100 Subject: [PATCH] Renamed from simple-cache to jcloud-cachelib --- README.md | 4 ++-- deploy.sh | 2 +- pyproject.toml | 2 +- src/{simple_cache => jcloud_cachelib}/__init__.py | 0 src/{simple_cache => jcloud_cachelib}/_core.py | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename src/{simple_cache => jcloud_cachelib}/__init__.py (100%) rename src/{simple_cache => jcloud_cachelib}/_core.py (100%) diff --git a/README.md b/README.md index 793c231..1e82928 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# simple-cache +# jcloud-cachelib A simple library for caching data. @@ -6,7 +6,7 @@ A simple library for caching data. You can install the library using `pip`: ```bash -pip install simple-cache --index-url https://repo.jcloud-services.ddns.net/simple/ +pip install jcloud-cachelib --index-url https://repo.jcloud-services.ddns.net/simple/ ``` ## Full documentation diff --git a/deploy.sh b/deploy.sh index aa5e80c..8c1469d 100755 --- a/deploy.sh +++ b/deploy.sh @@ -15,4 +15,4 @@ # limitations under the License. python3 -m build -scp dist/* jcloud@jcloud-services.ddns.net:/srv/data/wwwstatic/repo/simple/simple-cache/ \ No newline at end of file +scp dist/* jcloud@jcloud-services.ddns.net:/srv/data/wwwstatic/repo/simple/jcloud-cachelib/ \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index b21e2f9..eac48a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta" [project] -name = "simple-cache" +name = "jcloud-cachelib" version = "0.1.0" description = "A simple library for caching data." license = "Apache-2.0" \ No newline at end of file diff --git a/src/simple_cache/__init__.py b/src/jcloud_cachelib/__init__.py similarity index 100% rename from src/simple_cache/__init__.py rename to src/jcloud_cachelib/__init__.py diff --git a/src/simple_cache/_core.py b/src/jcloud_cachelib/_core.py similarity index 100% rename from src/simple_cache/_core.py rename to src/jcloud_cachelib/_core.py