-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 944 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 944 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
41
42
43
44
45
46
[project]
name = "jenkins-job-insight"
version = "3.0.0"
description = "Jenkins job insight and analysis tool"
requires-python = ">=3.12"
dependencies = [
"ai-cli-runner>=0.1.1",
"aiosqlite",
"cryptography>=46.0.5",
"defusedxml>=0.7.1",
"fastapi",
"gitpython",
"httpx",
"pydantic-settings",
"python-jenkins",
"python-multipart",
"python-simple-logger",
"reportportal-client>=5.7.4",
"typer>=0.9.0",
"uvicorn",
]
[project.scripts]
jenkins-job-insight = "jenkins_job_insight.main:run"
jji = "jenkins_job_insight.cli.main:app"
[project.optional-dependencies]
tests = ["pytest", "pytest-asyncio"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["src/jenkins_job_insight"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
]