-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
70 lines (63 loc) · 1.67 KB
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
[tool.poetry]
name = "fastapi-builder"
version = "2.0.0"
description = "fastapi-builder Project generator and manager for FastAPI"
authors = ["fmw666 <fmw19990718@gmail.com>"]
readme = "README.md"
packages = [{include = "fastapi_builder"}]
license = "MIT"
keywords = ["fastapi", "builder", "project", "python", "fastapi-builder"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"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 :: 3.12",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.0.3"
cookiecutter = "^1.7.3"
email-validator = "^1.1.3"
pydantic = "^1.8.2"
pymysql = "^1.0.2"
questionary = "^1.10.0"
typer = ">=0.12.0"
setuptools = "<70.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
ruff = "^0.1.0"
mypy = "^1.0.0"
types-pymysql = "^1.1.0.20251220"
types-setuptools = "^80.10.0.20260124"
[tool.poetry.scripts]
fastapi = "fastapi_builder.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
target-version = "py38"
exclude = [
"fastapi_builder/templates/**",
".deps",
".venv"
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = []
[tool.mypy]
python_version = "3.10"
strict = false
ignore_missing_imports = true
exclude = [
"fastapi_builder/templates",
"\\.deps",
"\\.venv"
]