forked from abunuwas/fencer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (63 loc) · 1.77 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["hatchling>=1.8.0", "hatch-vcs", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = 'fencer/__init__.py'
[project]
name = "fencer"
description = "Automated API security testing."
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
authors = [
{ name = "José Haro Peralta", email = "[email protected]" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"click>=8.0.0",
"requests>=2.28.2",
"jsf>=0.7.1",
"tabulate>=0.9.0",
"pyyaml>=0.6",
"exrex>=0.10.5",
]
dynamic = ["version"]
[project.scripts]
fencer = "fencer.cli:cli"
[project.urls]
Homepage = "https://github.com/abunuwas/fencer"
Source = "https://github.com/abunuwas/fencer"
#Documentation = "https://fencer.microapis.io"
Changelog = "https://github.com/abunuwas/fencer/blob/main/CHANGES.md"
"Bug Tracker" = "https://github.com/abunuwas/fencer/issues"
[tool.hatch.build.targets.wheel]
only-include = ["fencer"]
[tool.black]
color = true
line-length = 120
target-version = ['py310']
skip-string-normalization = true
[tool.isort]
line_length = 120
skip_gitignore = true
known_first_party = "fencer"
include_trailing_comma = true
[tool.pytest.ini_options]
testpaths = 'tests'
xfail_strict = true
filterwarnings = [
'error',
'ignore:path is deprecated.*:DeprecationWarning:',
]