Metadata-Version: 2.1
Name: devblaze
Version: 0.0.4
Summary: A tool for creating and managing development and production environments.
Project-URL: Homepage, https://github.com/godd0t/devblaze
License: MIT License
        
        Copyright (c) 2023 Lirim Shala
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Web Environment
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Topic :: Utilities
Requires-Dist: cookiecutter==2.1.1
Requires-Dist: textual==0.24.1
Provides-Extra: dev
Requires-Dist: black==23.3.0; extra == 'dev'
Requires-Dist: build==0.10.0; extra == 'dev'
Requires-Dist: ruff==0.0.267; extra == 'dev'
Requires-Dist: twine==4.0.2; extra == 'dev'
Description-Content-Type: text/markdown

# DevBlaze

![Status](https://img.shields.io/badge/status-alpha-red)


DevBlaze is a Python library that provides a streamlined process for creating new Django projects. It is used as a core component in the [Streamline Cookiecutter](https://github.com/godd0t/streamline-cookiecutter) project, which focuses on fast development and deployment of Django applications.

DevBlaze leverages the power of [Textual](https://github.com/textualize/textual/) to provide a custom CLI, enhancing the user experience and simplifying the creation of Django projects.

**Please note: DevBlaze is currently in alpha and may be subject to changes.**


## Getting Started

To get started with DevBlaze, follow these steps:

1. Install DevBlaze:

    ```
    pip install devblaze
    ```
2. Generate a new project:

    ```
    devblaze generate
    ```
3. Follow the prompts to create your project.
You will be prompted to enter some values. After that, the project will be created in the current directory.

DevBlaze also supports make shortcuts for an even simpler user experience. Check the Streamline Cookiecutter project for more details.

## Why DevBlaze?

Traditional cookiecutter templates are great, but DevBlaze takes it a step further. By leveraging the Textual library, DevBlaze provides a more interactive and user-friendly interface, making the process of creating new Django projects even easier and more enjoyable.
   
## Contributing

Contributions are welcome! Please see [CONTRIBUTING.md](https://github.com/godd0t/devblaze/blob/main/CONTRIBUTING.md) for more details.

## License

DevBlaze is licensed under the [MIT License](https://github.com/godd0t/devblaze/blob/main/LICENSE).
