diff --git a/ReadMe.md b/ReadMe.md index 671be02..0ae730f 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -2,7 +2,7 @@ This is a pip package that can be installed into any project and covers the following pars -- loggingn update with exception logs +- logging update with exception logs - requests wrapper for easier auth pass on access - dict fingerprinting - jmespath search @@ -22,6 +22,7 @@ explicit = true ``` ```sh +uv build --native-tls uv publish --index egra-gitea --token --native-tls ``` @@ -30,7 +31,7 @@ uv publish --index egra-gitea --token --native-tls We must set the full index URL here because we run with "--no-project2 ```sh -uv run --with corelibs-python --index egra-gitea=https://git.egplusww.jp/api/packages/PyPI/pypi/simple/ --no-project --native-tls -- python -c "import CoreLibs" +uv run --with corelibs --index egra-gitea=https://git.egplusww.jp/api/packages/PyPI/pypi/simple/ --no-project --native-tls -- python -c "import corelibs" ``` ## How to install in another project @@ -38,7 +39,7 @@ uv run --with corelibs-python --index egra-gitea=https://git.egplusww.jp/api/pac This will also add the index entry ```sh -uv add corelibs-python --index egra-gitea=https://git.egplusww.jp/api/packages/PyPI/pypi/simple/ --native-tls +uv add corelibs --index egra-gitea=https://git.egplusww.jp/api/packages/PyPI/pypi/simple/ --native-tls ``` ## Python venv setup diff --git a/pyproject.toml b/pyproject.toml index 3d1699e..17be3b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ # MARK: Project info [project] -name = "corelibs-python" +name = "corelibs" version = "0.2.0" description = "Collection of utils for Python scripts" readme = "ReadMe.md"