From 21a6336dc610ac28bc7a60e78fad8fafe91860e1 Mon Sep 17 00:00:00 2001 From: Tomasz Urbaszek Date: Tue, 30 Jan 2024 11:35:12 +0100 Subject: [PATCH] Adjust README to mention rename --- compat/snowflake-cli-labs/README.md | 50 +----------------------- compat/snowflake-cli-labs/pyproject.toml | 5 ++- 2 files changed, 6 insertions(+), 49 deletions(-) diff --git a/compat/snowflake-cli-labs/README.md b/compat/snowflake-cli-labs/README.md index f4b9b5760a..b8b665eaa0 100644 --- a/compat/snowflake-cli-labs/README.md +++ b/compat/snowflake-cli-labs/README.md @@ -1,51 +1,5 @@ # Snowflake Developer CLI -**Note**: Snowflake CLI is in Private Preview (PrPr). You must register for the PrPr to use Snowflake CLI by filling out the -[Snowflake CLI - PrPr Intake Form](https://forms.gle/HZNhPNbzn7oExjFu8). Also, if you want to access Snowflake Container -Services through Snowflake CLI, you must register for its PrPr. For more information, you can contact a -Snowflake sales representative. +This package has been renamed. Use `pip install snowflake-cli` instead. -For complete installation and usage instructions, refer to the -**[Snowflake CLI Guide](https://docs.snowflake.com/LIMITEDACCESS/snowcli/snowcli-guide)**. - -## Install Snowflake CLI - -### Install with pip (PyPi) - -Requires Python >= 3.8 - -```bash -pip install snowflake-cli -snow --help -``` - -### Install with Homebrew (Mac only) - -Requires [Homebrew](https://brew.sh/). - -```bash -brew tap Snowflake-Labs/snowcli -brew install snowcli -snow --help -``` - -### Install from source - -Requires Python >= 3.8 and git - -```bash -git clone https://github.com/snowflake-labs/snowcli -cd snowcli -# you can also do the below in an active virtual environment: -# python -m venv .venv -# source .venv/bin/activate -hatch build && pip install . -snow --version -``` - -You should now be able to run `snow` and get the CLI message. - -## Get involved - -Have a feature idea? Running into a bug? Want to contribute? We'd love to hear from you! -Please open or review issues, open pull requests, or reach out to us on developers@snowflake.com +New package: https://pypi.org/project/snowflake-cli/ diff --git a/compat/snowflake-cli-labs/pyproject.toml b/compat/snowflake-cli-labs/pyproject.toml index 325cbe5702..de1f4a9820 100644 --- a/compat/snowflake-cli-labs/pyproject.toml +++ b/compat/snowflake-cli-labs/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" name = "snowflake-cli-labs" authors = [{ name = "Snowflake Inc." }] license = { file = "LICENSE" } -version = "2.0.0" +dynamic = ["version"] requires-python = ">=3.8" description = "Snowflake CLI" readme = "README.md" @@ -21,3 +21,6 @@ classifiers = [ [tool.hatch.build.targets.wheel] packages = ["README.md"] + +[tool.hatch.version] +path = "../../src/snowflake/cli/__about__.py"