-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.31 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
[project]
name = "my-project"
version = "0.1.0"
dependencies = [ "fastapi>=0.115.0", "uvicorn[standard]>=0.24.0", "pydantic>=2.5.0", "passlib[bcrypt]>=1.7.4", "python-dotenv>=0.21.0", "httpx>=0.25.0", "python-jose[cryptography]>=3.3.0", "email-validator>=2.2.0", "asyncpg>=0.29.0", "aiomysql>=0.2.0", "aioredis>=2.0.0", "aiosqlite>=0.19.0", "openpyxl>=3.1.0", "textual>=0.50.0",]
[project.optional-dependencies]
docs = [ "mkdocs>=1.5.0", "mkdocs-material>=9.0.0",]
dev = [ "pytest", "pytest-asyncio", "pytest-mock",]
[tool.black]
line-length = 88
target-version = [ "py38",]
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
skip_gitignore = true
default_section = "THIRDPARTY"
known_first_party = [ "app",]
atomic = true
lines_after_imports = 2
filter_files = true
[tool.ruff]
line-length = 88
src = [ "app", "tests",]
[tool.ruff.lint]
select = [ "E", "W", "F", "I", "C", "B",]
ignore = [ "E501", "B008", "C901", "E203",]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.setuptools.packages.find]
include = [ "app*",]
exclude = [ "data*",]
[tool.ruff.lint.isort]
known-first-party = [ "app",]
force-wrap-aliases = true
combine-as-imports = true