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