Skip to content

Commit c940ccc

Browse files
committed
Update pyproject.toml and toml format config
1 parent 941159e commit c940ccc

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ trim_trailing_whitespace = true
1313
indent_style = space
1414
indent_size = 4
1515

16-
[*.{html,css,scss,json,yml,tpl,js,jsx}]
16+
[*.{html,css,scss,json,yml,tpl,js,jsx,toml}]
1717
indent_style = space
1818
indent_size = 2
1919

pyproject.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "flask-mongoengine"
33
description = "Flask extension that provides integration with MongoEngine and WTF model forms."
44
readme = "README.md"
55
requires-python = ">=3.7"
6-
license = {text = "BSD 3-Clause License"}
6+
license = { text = "BSD 3-Clause License" }
77
classifiers = [
88
"Development Status :: 4 - Beta",
99
"Environment :: Web Environment",
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.8",
1818
"Programming Language :: Python :: 3.9",
1919
"Programming Language :: Python :: 3.10",
20+
"Programming Language :: Python :: 3.11",
2021
"Programming Language :: Python :: Implementation :: PyPy",
2122
"Programming Language :: Python :: Implementation :: CPython",
2223
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
@@ -39,10 +40,10 @@ keywords = [
3940
"extension"
4041
]
4142
authors = [
42-
{name = "Ross Lawley", email = "[email protected]"}
43+
{ name = "Ross Lawley", email = "[email protected]" }
4344
]
4445
maintainers = [
45-
{name = "Andrey Shpak", email = "[email protected]"}
46+
{ name = "Andrey Shpak", email = "[email protected]" }
4647
]
4748
dynamic = ["version"]
4849

@@ -85,10 +86,10 @@ build-backend = "setuptools.build_meta"
8586
[tool.setuptools]
8687
zip-safe = false
8788
platforms = ["any"]
88-
packages=["flask_mongoengine", "flask_mongoengine.wtf"]
89+
packages = ["flask_mongoengine", "flask_mongoengine.wtf"]
8990

9091
[tool.setuptools.dynamic]
91-
version = {attr = "flask_mongoengine._version.version"}
92+
version = { attr = "flask_mongoengine._version.version" }
9293

9394
[tool.setuptools_scm]
9495
write_to = "flask_mongoengine/_version.py"
@@ -127,4 +128,4 @@ filterwarnings = [
127128
"ignore::ResourceWarning",
128129
"ignore::DeprecationWarning:flask_mongoengine",
129130
"ignore::DeprecationWarning:tests",
130-
]
131+
]

0 commit comments

Comments
 (0)