-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.27 KB
/
pyproject.toml
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
[project]
name = "crs-linter"
version = "0.1.0"
description = "CRS linter"
authors = [
{name = "Ervin Hegedus", email = "[email protected]"}
]
requires-python = ">=3.9"
license = "Apache-2.0"
readme = "README.md"
Issues = "https://github.com/coreruleset/crs-linter/issues"
Homepage = "https://github.com/coreruleset/crs-linter"
Repository = "https://github.com/coreruleset/crs-linter.git"
keywords = ["OWASP", "CRS", "linter"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
packages = [
{ include = "crs_linter", from = "src" }
]
# Requirements
dependencies = [
"msc_pyparser >=1.2.1",
"dulwich (>=0.22.7,<0.23.0)",
"semver (>=3.0.2,<4.0.0)",
"github-action-utils>=1.1.0,<2.0.0",
]
[project.scripts]
crs-linter = 'crs_linter.cli:main'
[dependency-groups]
dev = [
"pytest >=8.1.1,<9"
]
[tool.semantic_release]
version_variable = "pyproject.toml:version"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://pypi.org/legacy/"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"