@@ -14,7 +14,7 @@ authors = [
1414description = """ \
1515Django email backends and webhooks for Amazon SES, Brevo,
1616 MailerSend, Mailgun, Mailjet, Mandrill, Postal, Postmark, Resend,
17- SendGrid, SparkPost, Unisender Go and Scaleway
17+ Scaleway TEM, SendGrid, SparkPost, and Unisender Go
1818 (EmailBackend, transactional email tracking and inbound email signals)\
1919"""
2020# readme: see tool.hatch.metadata.hooks.custom below
@@ -30,10 +30,7 @@ keywords = [
3030 " Postal" ,
3131 " Postmark" , " ActiveCampaign" ,
3232 " Resend" ,
33- " SendGrid" , " Twilio" ,
34- " SparkPost" , " Bird" ,
35- " Resend" ,
36- " Scaleway" ,
33+ " Scaleway" , " Scaleway TEM" ,
3734 " SendGrid" , " Twilio" ,
3835 " SparkPost" , " Bird" ,
3936 " Unisender Go" ,
@@ -81,6 +78,13 @@ mailersend = []
8178mailgun = []
8279mailjet = []
8380mandrill = []
81+ postal = [
82+ # Postal requires cryptography for verifying webhooks.
83+ # Cryptography's wheels are broken on darwin-arm64 before Python 3.9,
84+ # and unbuildable on PyPy 3.8 due to PyO3 limitations. Since cpython 3.8
85+ # has also passed EOL, just require Python 3.9+ with Postal.
86+ " cryptography; python_version >= '3.9'"
87+ ]
8488postmark = []
8589resend = [" svix" ]
8690scaleway = []
@@ -94,13 +98,6 @@ sendgrid = [
9498sendinblue = []
9599sparkpost = []
96100unisender-go = []
97- postal = [
98- # Postal requires cryptography for verifying webhooks.
99- # Cryptography's wheels are broken on darwin-arm64 before Python 3.9,
100- # and unbuildable on PyPy 3.8 due to PyO3 limitations. Since cpython 3.8
101- # has also passed EOL, just require Python 3.9+ with Postal.
102- " cryptography; python_version >= '3.9'"
103- ]
104101
105102[project .urls ]
106103Homepage = " https://github.com/anymail/django-anymail"
0 commit comments