Metadata-Version: 2.4
Name: djstart
Version: 0.1.0
Summary: A simple CLI tool to scaffold Django projects and apps
Home-page: https://github.com/yourusername/djstart
Author: Ajay
Author-email: your.email@example.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: requests
Requires-Dist: jinja2
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# djstart

A simple CLI tool to scaffold Django projects with a virtual environment, apps, and auto-configured settings.

## Installation

```bash
pip install djstart
```

## Usage

```bash
djstart --root myproject --app blog --app users
```

- Automatically creates a virtual environment
- Installs Django
- Starts a project and apps
- Configures settings and URLs using Jinja2 templates

## License

MIT
