-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
103 lines (95 loc) · 3.13 KB
/
setup.py
File metadata and controls
103 lines (95 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
"""
Flask-Mailing - Modern async email sending for Flask 3.1+
This file exists for backwards compatibility with older pip versions.
For new installations, pyproject.toml is the primary configuration.
"""
from pathlib import Path
from setuptools import find_packages, setup
VERSION = (3, 0, 0)
AUTHOR = "Aniket Sarkar"
AUTHOR_EMAIL = "aniketsarkar@yahoo.com"
long_description = Path("README.md").read_text(encoding="utf-8")
setup(
name="Flask-Mailing",
version=".".join([str(i) for i in VERSION]),
url="https://github.com/marktennyson/flask-mailing",
license="MIT",
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description="Modern Flask mail system for 2026+ with async support, bulk operations, and full Flask 3.1+ compatibility",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"flask",
"flask-mail",
"flask-mailing",
"async-flask",
"asynchronous-email",
"async-mailer",
"flask-email",
"smtp",
"email",
],
packages=find_packages(exclude=["tests", "tests.*", "examples", "docs"]),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=[
"aiosmtplib>=4.0.2",
"asgiref>=3.8.0",
"blinker>=1.9.0",
"pydantic>=2.11.0",
"pydantic-settings>=2.9.0",
"email-validator>=2.3.0",
"typing-extensions>=4.13.0",
"flask>=3.1.0",
"jinja2>=3.1.6",
"werkzeug>=3.1.3",
],
extras_require={
"email-checking": [
"redis>=5.3.0",
"httpx>=0.28.1",
"dnspython>=2.7.0",
],
"dev": [
"pytest>=8.3.0",
"pytest-asyncio>=1.0.0",
"black>=25.1.0",
"isort>=6.0.0",
"mypy>=1.15.0",
"ruff>=0.11.0",
"coverage>=7.6.0",
"pre-commit>=4.0.0",
],
"docs": [
"mkdocs>=1.6.0",
"mkdocs-material>=9.6.0",
"mkdocstrings>=0.29.0",
"mkdocstrings-python>=1.16.0",
],
},
python_requires=">=3.10",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Email",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Typing :: Typed",
],
)