-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 938 Bytes
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 938 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
[project]
name = "smart-assistant"
version = "0.1.0"
description = "AI-powered productivity assistant with Jira, Slack, and more"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"ollama>=0.4.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"typer>=0.12.0",
"rich>=13.0.0",
"mcp-atlassian",
"google-api-python-client>=2.100.0",
"google-auth>=2.23.0",
"slack-bolt>=1.18.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.4.0",
]
[project.scripts]
sa = "smart_assistant.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["smart_assistant"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"