-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 836 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
[project]
name = "gh-deploy"
version = "1.0"
description = "GitHub webhook-based deployment system"
license = "MIT"
authors = [
{name = "[team Team]", email = "team@teamteam.dev"}
]
requires-python = ">=3.10"
dependencies = [
"gunicorn>=23.0.0",
"pydantic>=2.11.3",
"PyYAML>=6.0",
"starlette>=0.46.2",
"uvicorn>=0.34.2",
]
[dependency-groups]
dev = [
"ruff>=0.11.7",
]
[project.scripts]
gh-deploy = "gh_deploy.main:main"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN204", "B019", "COM812",
"D100", "D101", "D102", "D103", "D104", "D106", "D107", "D203", "D213",
"EM101",
"FIX002",
"PLR0911", "PLW0603",
"S104", "S106", "S603", "S604",
"T201", "TD002", "TD003", "TRY003",
]