-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (83 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
96 lines (83 loc) · 1.81 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sp26-google-gke-social-media"
version = "0.0.0"
readme = "README.md"
license = "MIT"
authors = []
keywords = []
classifiers = []
requires-python = ">=3.12, <3.14"
dependencies = [
"langgraph>=0.2",
"langchain-openai>=0.3",
"tavily-python>=0.5",
"redis>=5.0",
"kubernetes>=31.0",
]
[project.urls]
repository = "https://github.com/robinholzi/sp26-google-gke-social-media"
[tool.setuptools.packages.find]
include = ["sp26_gke*"]
namespaces = false
[tool.ruff]
line-length = 88
src = ["sp26_gke", "tests"]
[tool.ruff.lint]
ignore = ["E501", "N803", "N806", "E722"]
select = ["F", "E", "W", "I", "N", "UP"]
[tool.ruff.format]
indent-style = "space"
quote-style = "double"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"tests/**" = ["ANN", "ARG", "D", "E402", "PTH", "S101"]
[tool.docformatter]
pre-summary-newline = true
black = true
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = false
explicit_package_bases = true
no_implicit_optional = true
plugins = []
python_version = "3.12"
warn_unused_ignores = true
disable_error_code = ["import-untyped"]
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"torchvision.*",
"stable_baselines3.*",
"pettingzoo.*",
"gymnasium.*",
"pandas",
"requests",
"requests.*",
"scipy",
"scipy.*",
"shapely",
"shapely.*",
"yaml",
"tavily",
"tavily.*",
"kubernetes",
"kubernetes.*",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-p no:warnings", "--import-mode=importlib"]
xfail_strict = true
log_cli_level = "warn"
pythonpath = "sp26_gke"
testpaths = ["tests"]
[tool.coverage.run]
source = ["sp26_gke"]
[tool.coverage.report]
exclude_also = [
"if TYPE_CHECKING:",
"if __name__ == .__main__.:",
"except ImportError",
]