-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 767 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 767 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
[project]
name = "the-full-stack"
version = "0.0.1"
description = "Companion code for the blog post 'The Full Stack'"
authors = [
{name = "Tom Hanley", email = "tjhanleyx@proton.me"},
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
dependencies = [
"fastapi>=0.104.1",
"uvicorn>=0.24.0.post1",
"openai>=1.3.9",
"pydantic>=2.5.2",
"python-dotenv>=1.0.0",
]
[tool.pdm.dev-dependencies]
style = [
"black>=23.11.0",
]
[tool.pdm.scripts]
_.env_file = ".env"
uvicorn = "uvicorn main:app --reload --app-dir ./src/the_full_stack"
[tool.isort]
profile = "black"
case_sensitive = true
[tool.pylint.master]
fail-under = 7
[tool.pytest.ini_options]
markers = [
"integration: marks tests as an integration test",
]