Metadata-Version: 2.4
Name: webclone-backend
Version: 1.0.0
Summary: Professional Python backend framework for web cloning projects
Home-page: https://github.com/yourusername/webclone-backend
Author: Your Name
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/webclone-backend
Project-URL: Documentation, https://webclone-backend.readthedocs.io
Project-URL: Repository, https://github.com/yourusername/webclone-backend
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi>=0.104.0
Requires-Dist: uvicorn>=0.24.0
Requires-Dist: sqlalchemy>=2.0.0
Requires-Dist: pyjwt>=2.8.0
Requires-Dist: bcrypt>=4.1.0
Requires-Dist: python-multipart>=0.0.6
Requires-Dist: pillow>=10.0.0
Requires-Dist: pydantic>=2.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Requires-Dist: mypy>=1.5.0; extra == "dev"
Provides-Extra: redis
Requires-Dist: redis>=5.0.0; extra == "redis"
Provides-Extra: postgres
Requires-Dist: psycopg2-binary>=2.9.0; extra == "postgres"
Provides-Extra: mysql
Requires-Dist: pymysql>=1.1.0; extra == "mysql"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# WebClone Backend

Professional Python backend framework for web cloning projects.

## Features

- 🚀 Fast API Server (FastAPI)
- 💾 Database Management (SQLAlchemy)
- 🔐 Authentication & Authorization (JWT)
- 📁 File Management
- 🖼️ Image Processing
- 💨 Caching System
- ✅ Data Validation
- 📝 Logging

## Installation

```bash
pip install webclone-backend
```

## Quick Start

```python
from webclone_backend import WebCloneBackend, Database

# Create app
app = WebCloneBackend()

# Setup database
db = Database('sqlite:///myapp.db')

# Create route
@app.app.get('/')
async def home():
    return {'message': 'Hello World!'}

# Run server
app.run(port=8000)
```

## Documentation

Full documentation: https://webclone-backend.readthedocs.io

## License

MIT License
