-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
84 lines (75 loc) · 2.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[project]
name = "cra-scope"
version = "0.1.3"
description = "Open-source CLI for preparing EU Cyber Resilience Act (Regulation 2024/2847) Article 14 notifications for the ENISA Single Reporting Platform (SRP)."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "CRA Scope B.V.", email = "hello@crascope.com" },
]
keywords = [
"cra",
"cyber-resilience-act",
"compliance",
"enisa",
"srp",
"article-14",
"vulnerability-reporting",
"eu-regulation",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Legal Industry",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"click>=8.1",
"httpx>=0.27",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"respx>=0.21",
]
[project.urls]
Homepage = "https://crascope.com"
Documentation = "https://github.com/Usingthefork/cra-scope-cli#readme"
Source = "https://github.com/Usingthefork/cra-scope-cli"
Issues = "https://github.com/Usingthefork/cra-scope-cli/issues"
"Managed SaaS" = "https://crascope.com"
[project.scripts]
cra-scope = "cra_scope_cli.main:cli"
[tool.hatch.build.targets.wheel]
packages = ["src/cra_scope_core", "src/cra_scope_cli"]
[tool.hatch.build.targets.sdist]
include = [
"src/",
"tests/",
"LICENSE",
"NOTICE",
"README.md",
"CHANGELOG.md",
"pyproject.toml",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --strict-markers"
[tool.coverage.run]
source = ["src/cra_scope_core", "src/cra_scope_cli"]
branch = true