forked from fastapi-mvc/fastapi-mvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (78 loc) · 2.33 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
[tool.poetry]
name = "fastapi-mvc"
version = "0.28.1"
description = "Developer productivity tool for making high-quality FastAPI production-ready APIs."
authors = ["Radosław Szamszur <github@rsd.sh>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/fastapi-mvc/fastapi-mvc"
documentation = "https://fastapi-mvc.netlify.app"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Framework :: FastAPI",
]
[tool.poetry.dependencies]
python = "^3.8"
click = "~8.1.3"
copier = "6.2.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2,<7.5"
pytest-cov = ">=4.0,<4.2"
flake8 = "~5.0.4"
flake8-docstrings = "~1.7.0"
flake8-import-order = "~0.18.2"
flake8-todo = "^0.7"
black = ">=23.1,<23.4"
mypy = ">=1.0.1,<1.5.0"
Sphinx = ">=5.3,<6.3"
Pallets-Sphinx-Themes = ">=2.0.3,<2.2.0"
myst-parser = ">=0.18.1,<1.1.0"
sphinx-click = "~4.4.0"
[tool.poetry.scripts]
fastapi-mvc = "fastapi_mvc.cli.cli:cli"
fm = "fastapi_mvc.cli.cli:cli"
[tool.poetry.urls]
"Issues" = "https://github.com/fastapi-mvc/fastapi-mvc/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = [
"fastapi_mvc/__main__.py",
]
[tool.mypy]
python_version = '3.10'
show_error_codes = true
follow_imports = 'silent'
strict_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
disallow_any_generics = true
check_untyped_defs = true
no_implicit_reexport = true
warn_unused_configs = true
disallow_subclassing_any = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
disallow_untyped_calls = true
disallow_untyped_defs = true
implicit_optional = true
[[tool.mypy.overrides]]
module = [
"copier.*"
]
ignore_missing_imports = true