forked from ScottyLabs/governance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.29 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
[project]
name = "synchronizer"
version = "0.1.0"
description = "Synchronize the teams and members from the `contributors/` and `teams/` directories to ScottyLabs services"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"colorama>=0.4.6",
"google-api-python-client>=2.187.0",
"google-auth-httplib2>=0.3.0",
"google-auth-oauthlib>=1.2.3",
"hvac>=2.4.0",
"pydantic>=2.12.5",
"pygithub>=2.8.1",
"python-dotenv>=1.2.1",
"python-keycloak>=6.0.0",
"slack-sdk>=3.39.0",
]
[dependency-groups]
dev = [
"mypy>=1.19.1",
"ruff>=0.14.10",
"ty>=0.0.10",
"types-colorama>=0.4.15.20250801",
"types-hvac>=2.4.0.20251115",
]
[project.scripts]
sync = "synchronizer:main"
[tool.setuptools.packages.find]
where = ["__meta/synchronizer"]
include = ["synchronizer*"]
[tool.mypy]
check_untyped_defs = true
# Supported rules https://github.com/charliermarsh/ruff/#supported-rules
[tool.ruff]
lint.select = ["ALL"]
lint.ignore = [
# Do not require documentation for every single function/method.
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D106",
"D107",
# Ignore rules with lower code number when they are at conflict
"D203",
"D212",
# May cause conflicts when used with the formatter
"COM812",
]