Metadata-Version: 2.4
Name: dsbc
Version: 1.0.0
Summary: DeepSeek Balance Checker - CLI tool to check DeepSeek API account balances
Home-page: https://github.com/merlos/dsbc
Author: Merlos
Author-email: Ian Merlos <merlos@example.com>
License: MIT
Project-URL: Homepage, https://github.com/ianmerlos/dsbc
Project-URL: Documentation, https://github.com/ianmerlos/dsbc#readme
Project-URL: Repository, https://github.com/ianmerlos/dsbc
Project-URL: Issues, https://github.com/ianmerlos/dsbc/issues
Keywords: deepseek,api,balance,cli,tool,ai,llm
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: rich>=13.0.0
Requires-Dist: typer>=0.9.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Requires-Dist: isort>=5.12.0; extra == "dev"
Requires-Dist: twine>=4.0.0; extra == "dev"
Requires-Dist: build>=1.0.0; extra == "dev"
Provides-Extra: uv
Requires-Dist: uv>=0.1.0; extra == "uv"
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# dsbc CLI - DeepSeek Balance Checker

This is the CLI component of the dsbc (DeepSeek Tools Collection). It's a Python command-line tool to check DeepSeek API account balances and view available models.

## Installation

### From PyPI

```bash
pip install dsbc
```

### From source

```bash
# From the repository root
cd cli
pip install -e .
```

## Usage

```bash
# Set your API token
export DEEPSEEK_API_TOKEN="your-token-here"

# Check balance
dsbc

# View models
dsbc --models

# JSON output
dsbc --json

# Health check
dsbc --health
```

## Development

See the main [README.md](../README.md) for development instructions.

## Project Structure

```
cli/
├── deepseek_balance/     # Main Python package
│   ├── __init__.py      # Package exports
│   ├── cli.py          # CLI interface (dsbc command)
│   └── client.py       # API client
├── tests/              # Test suite
├── pyproject.toml     # Modern packaging config
├── setup.py           # Legacy packaging support
├── uv.lock           # uv lock file
├── requirements.txt   # pip requirements
└── README.md         # This file
```

## License

MIT - See [LICENSE](../LICENSE) file.
