-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.55 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "appsecone"
version = "1.0.0"
description = "Enterprise AppSec dashboard — vulnerability posture and release readiness from Fortify SSC"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.12"
authors = [
{ name = "AppSecOne Team" },
]
keywords = ["appsec", "fortify", "vulnerability", "release-readiness", "dashboard"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Typing :: Typed",
]
dependencies = [
"typer>=0.9.0",
"jinja2>=3.1.0",
"jsonschema>=4.20.0",
"rich>=13.0.0",
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"httpx>=0.27.0",
"aiosqlite>=0.20.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.23.0",
"httpx>=0.27.0",
"ruff>=0.2.0",
"respx>=0.22.0",
"asgi-lifespan>=2.1.0",
]
[project.scripts]
appsecone = "appsecone.cli.app:app"
[tool.hatch.build.targets.wheel]
packages = ["src/appsecone"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-v --tb=short"
asyncio_mode = "auto"
[tool.ruff]
target-version = "py312"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM", "TCH"]
[tool.ruff.lint.per-file-ignores]
"src/appsecone/cli/app.py" = ["B008"]