-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (59 loc) · 1.58 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
[project]
version = "0.0.6"
name = "github_linter"
authors = [{ name = "James Hodgkinson", email = "james@terminaloutcomes.com" }]
classifiers = ["License :: OSI Approved :: MIT License"]
readme = "README.md"
keywords = ["github"]
requires-python = ">=3.12"
dependencies = [
"aiosqlite>=0.22.1",
"click>=8.4.2",
"fastapi>=0.140.13",
"github3-py>=4.0.1",
"greenlet>=3.5.4",
"jinja2>=3.1.6",
"json5>=0.15.0",
"loguru>=0.7.3",
"pydantic>=2.13.4",
"pygithub>=2.9.1",
"python-hcl2>=8.1.2",
"pytz>=2026.3.post1",
"pyyaml>=6.0.3",
"requests>=2.34.2",
"ruyaml>=0.91.0",
"semver>=3.0.4",
"sqlalchemy>=2.0.51",
"tomli>=2.4.1",
"tomli-w>=1.2.0",
"uvicorn>=0.51.0",
"wildcard-matcher>=0.0.3",
]
[project.urls]
Home = "https://github.com/yaleman/github_linter"
[project.optional-dependencies]
dev = ["flit", "pytest", "mypy", "types-PyYAML", "types-pytz"]
[project.scripts]
"github-linter" = 'github_linter.__main__:cli'
"github-linter-web" = 'github_linter.web.__main__:cli'
[tool.ruff]
line-length = 200
exclude = ["W0511", "consider-using-dict-items", "duplicate-code"]
[tool.pytest.ini_options]
markers = ["network: things which need authentication, '-m \"not network\"'"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"coverage>=7.15.2",
"flit>=3.12.0",
"httpx>=0.28.1",
"httpx2>=2.9.1",
"pytest>=9.1.1",
"ruff>=0.16.0",
"ty>=0.0.64",
"types-pytz>=2026.3.1.20260727",
"types-pyyaml>=6.0.12.20260724",
"types-requests>=2.33.0.20260712",
]