-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (64 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
75 lines (64 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "summarizer"
version = "0.1.0"
description = "Summarizes the work a person has done within a given day across multiple applications."
authors = [
{ name = "Christopher Hart", email = "chart2@cisco.com" }
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"humanize>=4.12.3",
"requests>=2.32.3",
"pydantic-settings>=2.9.1",
"python-dotenv>=1.1.0",
"rich>=14.0.0",
"typer>=0.15.4",
"webexpythonsdk>=2.0.4",
]
[project.urls]
"Homepage" = "https://github.com/ChristopherJHart/webex-summarizer"
"Bug Tracker" = "https://github.com/ChristopherJHart/webex-summarizer/issues"
[project.optional-dependencies]
dev = [
"bandit>=1.8.3",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-cov>=6.1.1",
"responses>=0.25.3",
"ruff>=0.11.8",
"xenon>=0.9.3",
]
[project.scripts]
summarizer = "summarizer.cli:app"
[tool.setuptools.packages.find]
include = ["summarizer*"]
[tool.uv]
package = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"W", # pycodestyle warnings
"C90",# flake8-mccabe complexity
"N", # pep8-naming
"UP", # pyupgrade
"ANN",# flake8-annotations
"D", # pydocstyle
"T", # flake8-print (includes T201 for pdb, replacing debug-statements hook)
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.pyright]
stubPath = "./webexpythonsdk-stubs"