-
-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move towards standardized project layout/setup #211
Conversation
* Remove setup.py, replace with pyproject.toml * Use flit for building package/wheels * Move project logic to `src/` * Move tests to `tests/` Layout/ideas borrowed from flask-debugtoolbar
a49f47d
to
449fc1d
Compare
@@ -8,11 +8,12 @@ | |||
from unittest import mock | |||
|
|||
from flask import Flask | |||
from speaklater import make_lazy_string | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think moving things to src/
made ruff realize that flask_mail
was a 1st party package
description = "Flask extension for sending email" | ||
readme = "README.md" | ||
authors = [{ name = "Dan Jacob", email = "[email protected]" }] | ||
maintainers = [{ name = "Pallets Ecosystem", email = "[email protected]" }] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seemed to make sense to change this (modelled after flask-debugtoolbar, giving credit to the original author while making it clear who's the active maintainer)
src/
tests/
Layout/ideas borrowed from flask-debugtoolbar