diff --git a/.gitignore b/.gitignore index 67465f7..f566953 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,17 @@ lcov.info # Backup files *.bak *.backup + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +dist/ +*.egg-info/ +.eggs/ +*.whl +.venv/ +venv/ diff --git a/python/Cargo.toml b/python/Cargo.toml index 0a75b0f..cceede7 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redis-cloud-py" -version = "0.1.0" +version = "0.9.3" edition = "2024" rust-version = "1.89" authors = ["Josh Rotenberg "] diff --git a/python/pyproject.toml b/python/pyproject.toml index 46ceb35..9b3d839 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,12 +4,12 @@ build-backend = "maturin" [project] name = "redis-cloud" -version = "0.1.0" +dynamic = ["version"] description = "Python bindings for Redis Cloud REST API client" readme = { file = "../README.md", content-type = "text/markdown" } license = { text = "MIT OR Apache-2.0" } authors = [ - { name = "Josh Rotenberg", email = "joshrotenberg@gmail.com" } + { name = "Josh Rotenberg", email = "josh.rotenberg@redis.com" } ] keywords = ["redis", "cloud", "api", "rest", "client"] classifiers = [ diff --git a/python/redis_cloud/__pycache__/__init__.cpython-313.pyc b/python/redis_cloud/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index b7a8aaf..0000000 Binary files a/python/redis_cloud/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/python/redis_cloud/redis_cloud.cpython-313-darwin.so b/python/redis_cloud/redis_cloud.cpython-313-darwin.so deleted file mode 100755 index d7d9eb7..0000000 Binary files a/python/redis_cloud/redis_cloud.cpython-313-darwin.so and /dev/null differ diff --git a/python/tests/__pycache__/__init__.cpython-313.pyc b/python/tests/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index c6335e8..0000000 Binary files a/python/tests/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/python/tests/__pycache__/test_client.cpython-313-pytest-9.0.2.pyc b/python/tests/__pycache__/test_client.cpython-313-pytest-9.0.2.pyc deleted file mode 100644 index 066798a..0000000 Binary files a/python/tests/__pycache__/test_client.cpython-313-pytest-9.0.2.pyc and /dev/null differ