-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
113 lines (99 loc) · 2.52 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flask-muck"
version = "0.3.0"
authors = [
{ name="Daniel Tiesling", email="tiesling@gmail.com" },
]
description = "Batteries included framework for generating RESTful apis using Flask and SqlAlchemy."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Flask"
]
dependencies = [
"Flask >= 1.4.0",
"sqlalchemy >= 1.4.0",
"webargs >= 8.0.0",
"marshmallow >= 3.15.0",
"pydantic >= 2.0",
"apispec >= 6.3.0",
"rich >= 13.7.0",
"pyhumps >= 3.8.0",
"flasgger >= 0.9.7.1",
"marshmallow-jsonschema >= 0.13.0"
]
[project.urls]
"Homepage" = "https://github.com/dtiesling/flask-muck"
"Repository" = "https://github.com/dtiesling/flask-muck"
"Documentation" = "https://dtiesling.github.io/flask-muck/"
[tool]
[tool.hatch.version]
path = "src/flask_muck/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/examples",
]
[tool.hatch.build.targets.wheel]
packages = ["src/flask_muck"]
[tool.poetry]
name = "flask-muck"
description = "Batteries included framework for generating RESTful apis using Flask and SqlAlchemy."
version = "0.0.1"
authors = ["Daniel Tiesling <tiesling@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.9"
Flask = "^2.0.0"
sqlalchemy = "^2.0.23"
webargs = "^8.3.0"
marshmallow = "^3.20.1"
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
pydantic = "^2.5.2"
apispec = "^6.3.0"
rich = "^13.7.0"
pyhumps = "^3.8.0"
flasgger = "^0.9.7.1"
marshmallow-jsonschema = "^0.13.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.6.1"
types-requests = "^2.31.0.10"
types-flask = "^1.1.6"
sqlalchemy-stubs = "^0.4"
pytest = "^7.4.3"
flask-login = "^0.6.3"
flask-sqlalchemy = "^3.1.1"
coverage = "^7.3.2"
pytest-cov = "^4.1.0"
syrupy = "^4.6.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.4.11"
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
mike = "^2.0.0"
hatch = "^1.9.3"
[tool.mypy]
packages = "src"
strict = true
disallow_untyped_calls = false
warn_return_any = false
disallow_any_generics = false
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test*.py"
pythonpath = ["src"]
[tool.coverage.run]
branch = true
[tool.coverage.report]
fail_under = 95
exclude_also = [
"@(abc\\.)?abstractmethod",
"if TYPE_CHECKING:",
"raise NotImplementedError"
]