-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (49 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
51 lines (49 loc) · 918 Bytes
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
[project]
name = "python-samples-fastapi-restful"
version = "1.0.0"
description = "RESTful API proof of concept built with Python 3.13 and FastAPI"
readme = "README.md"
requires-python = ">=3.13.3"
authors = [{name = "nanotaboada", email = "hello@example.com"}]
dependencies = [
"fastapi[standard]==0.135.3",
"SQLAlchemy==2.0.49",
"aiosqlite==0.22.1",
"aiocache==0.12.3",
]
[dependency-groups]
test = [
"pytest==9.0.2",
"pytest-cov==7.1.0",
"pytest-sugar==1.1.1",
"gevent==25.9.1",
]
lint = [
"flake8==7.3.0",
"black==26.3.1",
]
dev = [
{ include-group = "test" },
{ include-group = "lint" },
]
[tool.black]
line-length = 88
target-version = ['py313']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.github
| \.pytest_cache
| \.venv
| \.vscode
| assets
| htmlcov
| rest
| scripts
| tools
| storage
| __pycache__
| tests/test_main\.py
)/
'''