Socket
Book a DemoInstallSign in
Socket

configen-cli

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

configen-cli

Configen cli

pipPyPI
Version
0.1.11
Maintainers
1

Configen CLI

This is the CLI tool for Configen, built with Typer, Rich, and OpenAI.

1. Install Pyenv

brew update
brew install pyenv
cat << 'EOF' >> ~/.zshrc
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
EOF
source ~/.zshrc
pyenv --version
pyenv install 3.12.3
pyenv local 3.12.3
which python
python --version

2. Create new Poetry project

poetry new configen-{project}
cd /configen-{project}
poetry install
poetry run pytest
poetry env info --path

3. Install/uninstall CLI from source code

pip install -e .
pip uninstall configen-cli

4. Deploy CLI to PyPI

poetry version patch
poetry build
poetry run twine upload --repository testpypi dist/* --verbose
poetry run twine upload --repository pypi dist/* --verbose

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts