forked from MongoEngine/flask-mongoengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
117 lines (107 loc) · 2.67 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
106
107
108
109
110
111
112
113
114
115
116
117
[project]
name = "flask-mongoengine2"
description = "Flask extension that provides integration with MongoEngine."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "BSD 3-Clause License"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Flask",
]
dependencies = [
"Flask>=2.3.0",
"mongoengine>=0.21, <0.28",
'importlib-metadata; python_version<"3.8"',
]
keywords = [
"flask",
"forms",
"mongo",
"pymongo",
"mongoengine",
"extension"
]
maintainers = [
{name = "Ahmet Elgün", email = "[email protected]"}
]
dynamic = ["version"]
[project.optional-dependencies]
toolbar = ["Flask-DebugToolbar>=0.11.0"]
dev = [
"black==22.6.0",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-mock",
"nox",
"Pillow>=7.0.0",
"blinker",
]
[project.urls]
Homepage = "https://github.com/ahmetelgun/flask-mongoengine2"
Documentation = "https://flask-mongoengine2.readthedocs.io"
Repository = "https://github.com/ahmetelgun/flask-mongoengine2"
Changelog = "https://github.com/ahmetelgun/flask-mongoengine2/releases"
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.3.1",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
platforms = ["any"]
packages=["flask_mongoengine2"]
[tool.setuptools.dynamic]
version = {attr = "flask_mongoengine2._version.version"}
[tool.setuptools_scm]
write_to = "flask_mongoengine2/_version.py"
[tool.black]
line-length = 88
target-version = ['py37']
exclude = '''
/(
\.eggs
| \.git
| \.tox
| \.venv
| \.vscode
| docs
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
[tool.pytest.ini_options]
addopts = "--cov=flask_mongoengine2 --cov-config=setup.cfg"
testpaths = ["tests"]
filterwarnings = [
"error",
"ignore::ResourceWarning",
"ignore::DeprecationWarning:flask_mongoengine2",
"ignore::DeprecationWarning:tests",
]