Metadata-Version: 2.4
Name: masonite-framework
Version: 5.0.0
Summary: Masonite is a modern and developer centric Python web framework.
Author: Joe Mancuso
Maintainer-email: Eduardo Aguad <contact@masonite.dev>
License: MIT
Project-URL: Homepage, https://github.com/masonitedev/masonite
Project-URL: Documentation, https://github.com/masonitedev/masonite
Project-URL: Source, https://github.com/masonitedev/masonite
Keywords: Masonite,masonite-framework,Python,Web Framework
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: inflection<0.6,>=0.5
Requires-Dist: exceptionite<4,>=3
Requires-Dist: pendulum[test]<4,>=3
Requires-Dist: jinja2<4,>=3.1
Requires-Dist: cleo<0.9,>=0.8.1
Requires-Dist: hupper<2,>=1.12
Requires-Dist: bcrypt<6,>=4
Requires-Dist: whitenoise<7,>=6.6
Requires-Dist: python-dotenv<2,>=1
Requires-Dist: masonite-orm<4,>=3
Requires-Dist: hashids<2,>=1.3
Requires-Dist: cryptography<46,>=42
Requires-Dist: tldextract<6,>=5
Requires-Dist: hfilesize>=0.1
Requires-Dist: dotty_dict<2,>=1.3
Requires-Dist: pyjwt<3,>=2.8
Requires-Dist: pytest<9,>=8
Requires-Dist: werkzeug<4,>=3
Requires-Dist: watchdog<7,>=4
Requires-Dist: multipart<2,>=1.2
Requires-Dist: requests<3,>=2.28
Provides-Extra: test
Requires-Dist: coverage; extra == "test"
Requires-Dist: redis; extra == "test"
Requires-Dist: boto3; extra == "test"
Requires-Dist: pusher; extra == "test"
Requires-Dist: pymemcache; extra == "test"
Requires-Dist: vonage<4,>=3.16; extra == "test"
Requires-Dist: slackblocks<2,>=1; extra == "test"
Requires-Dist: argon2-cffi<26,>=23; extra == "test"
Requires-Dist: pwnedapi<2,>=1; extra == "test"
Requires-Dist: responses<1,>=0.25; extra == "test"
Requires-Dist: phonenumbers<10,>=8.12; extra == "test"
Provides-Extra: vonage
Requires-Dist: vonage<4,>=3.16; extra == "vonage"
Requires-Dist: phonenumbers<10,>=8.12; extra == "vonage"
Provides-Extra: argon2
Requires-Dist: argon2-cffi<26,>=23; extra == "argon2"
Provides-Extra: dev
Requires-Dist: flake8; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: isort; extra == "dev"
Dynamic: license-file

<p align="center">
  <img src="https://dev-to-uploads.s3.amazonaws.com/uploads/articles/4trhpkkdbbzutc5ufxi9.png" width="160px">
  <h1 align="center">Masonite</h1>
</p>
<p align="center">
  <img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/masonitedev/masonite/pythonapp.yml">

  <img alt="GitHub release (latest by date including pre-releases)" src="https://img.shields.io/github/v/release/masonitedev/masonite?include_prereleases">
  <img src="https://img.shields.io/github/license/masonitedev/masonite.svg" alt="License">
  <a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
</p>

## About Masonite

Stop using old frameworks with just a few confusing features. Masonite is the developer focused dev tool with all the features you need for the rapid development you deserve. Masonite is perfect for beginners getting their first web app deployed or advanced developers and businesses that need to reach for the full fleet of features available. A short list of the available features are:

* Mail support for sending emails quickly.
* Queue support to speed your application up by sending jobs to run on a queue or asynchronously.
* Notifications for sending notifications to your users simply and effectively.
* Task scheduling to run your jobs on a schedule (like everyday at midnight) so you can set and forget your tasks.
* Events you can listen for to execute listeners that perform your tasks when certain events happen in your app.
* A BEAUTIFUL Active Record style ORM called Masonite ORM. Amazingness at your fingertips.
* Many more features you need which you can find in the docs!

## Learning Masonite

New to Masonite? Check out the [official repository](https://github.com/masonitedev/masonite).
Masonite strives to have extremely clear documentation 😃. It would be wise to go through the tutorials there.
If you find any discrepencies or anything that doesn't make sense, please open an issue and we will get it cleared up!

## Getting Started Quickly

Create and activate a virtual environment and if you have a working Python 3.10–3.13 installation then getting started is as quick as typing

```bash
pip install masonite-framework
project start .
python craft serve
```

## Upgrading from 4.x to 5.0

Masonite has moved to the [masonitedev](https://github.com/masonitedev) organization and the PyPI package has been renamed from `masonite` to `masonite-framework`.

1. Uninstall the old package and install the new one:

   ```bash
   pip uninstall masonite
   pip install "masonite-framework>=5,<6"
   ```

2. Imports are unchanged — you still `import masonite` / `from masonite import ...`.
3. Python 3.10–3.13 is now required (3.8/3.9 were dropped as they reached end of life).
4. Masonite ORM 3.x and Pendulum 3.x are now required. If your app parses dates directly with Pendulum, review the [Pendulum 3 changes](https://pendulum.eustace.io/blog/announcing-pendulum-3-0-0.html) (parsing is stricter).
5. New in 5.0: a full logging system with `terminal`, `single`, `daily`, `stack`, `syslog` and `slack` drivers, configured in `config/logging.py` and available through the `Log` facade. Unhandled exceptions are logged automatically with their traceback.
6. The repository now lives at https://github.com/masonitedev/masonite — update your remotes, issues and links.

## Contributing

Contributing to Masonite is simple:

- Read the [Contributing Guide](https://github.com/masonitedev/masonite/blob/5.0/CONTRIBUTING.md) to learn how to contribute to the core source code development of the project.
- Open an [issue](https://github.com/masonitedev/masonite/issues) or a [pull request](https://github.com/masonitedev/masonite/pulls) to ask questions, report bugs or propose changes.

## Core Maintainers

- [Joseph Mancuso](https://github.com/josephmancuso) (Author)
- [Samuel Girardin](https://github.com/girardinsamuel)
- [Marlysson Silva](https://github.com/Marlysson)

## Security Vulnerabilities

If you discover a security vulnerability within Masonite please read the [Security Policy](./SECURITY.md). All security vulnerabilities will be promptly addressed.

## License

The Masonite framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
