-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 754 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 754 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
[project]
name = "personal-assistant"
version = "0.1.0"
description = "AI-powered note-taking assistant with Obsidian integration"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"python-dotenv>=1.0.0",
"gitpython>=3.1.41",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"github-copilot-sdk>=0.1.0",
"aiofiles>=23.2.1",
"python-multipart>=0.0.6",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.hatch.build.targets.wheel]
packages = ["backend"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"