-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
105 lines (97 loc) · 2.86 KB
/
pyproject.toml
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
104
105
[tool.poetry]
name = "Flask-Mailman"
version = "1.1.1"
description = "Porting Django's email implementation to your Flask applications."
authors = ["Waynerv <[email protected]>"]
license = "BSD-3-Clause"
readme="README.md"
repository="https://github.com/waynerv/flask-mailman"
keywords=["flask", "mail", "smtp", "flask-mail"]
exclude = ["docs", "tests*"]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Framework :: Flask",
"Topic :: Software Development :: Build Tools",
"Topic :: Communications :: Email",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.7"
flask = ">= 1.0"
black = { version = "*", optional = true}
isort = { version = "*", optional = true}
flake8 = { version = "*", optional = true}
pytest = { version = "*", optional = true}
pytest-cov = { version = "*", optional = true}
tox = { version = "*", optional = true}
virtualenv = { version = "*", optional = true}
pip = { version = "*", optional = true}
mkdocs = { version = "*", optional = true}
mkdocs-include-markdown-plugin = { version = "*", optional = true}
mkdocs-material = { version = "*", optional = true}
mkdocstrings = { version = "*", optional = true}
mkdocs-material-extensions = { version = "*", optional = true}
twine = { version = "*", optional = true}
mkdocs-autorefs = {version = "*", optional = true}
pre-commit = {version = "*", optional = true}
toml = {version = "*", optional = true}
bump2version = {version = "*", optional = true}
aiosmtpd = {version = "^1.4.4.post2", optional = true}
[tool.poetry.extras]
test = [
"pytest",
"black",
"isort",
"flake8",
"pytest-cov",
"aiosmtpd"
]
dev = ["tox", "pre-commit", "virtualenv", "pip", "twine", "toml", "bump2version"]
doc = [
"mkdocs",
"mkdocs-include-markdown-plugin",
"mkdocs-material",
"mkdocstrings",
"mkdocs-material-extensions",
"mkdocs-autorefs"
]
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
skip_gitignore = true
# you can skip files as below
#skip_glob = docs/conf.py
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"