Metadata-Version: 2.4
Name: deployer-scripts
Version: 1.0.0
Summary: Web application deployment scripts for Claude Code - framework detection, volume analysis, and packaging
License: MIT
Keywords: claude,deployment,docker,web
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
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: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Requires-Dist: requests>=2.31.0
Requires-Dist: tqdm>=4.66.0
Provides-Extra: toml
Requires-Dist: tomli>=2.0.1; (python_version < '3.11') and extra == 'toml'
Description-Content-Type: text/markdown

# deployer-scripts

Web application deployment scripts for Claude Code.

## Installation

```bash
pip install deployer-scripts
```

## Commands

```bash
# Detect project framework and generate app-deploy.json
deploy-detect /path/to/project

# Package project into tar.gz
deploy-pack /path/to/project "" myapp 1.0.0

# Upload package to server
deploy-upload /tmp/myapp.tar.gz --server-url http://... --api-key xxx
```

## Supported Frameworks

- **Node.js**: Next.js, Vite, Express, Fastify, Remix, Astro, SvelteKit, Nuxt
- **Python**: Flask, FastAPI, Streamlit
