-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.47 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
[project]
name = "cert-host-scraper"
dynamic = ["version"]
description = "Query the certificate transparency log from crt.sh by a given a keyword and returns the status code of the matched results. Optionally, filtering the results by status code."
authors = [{ name = "Malachi Soord", email = "inverse.chi@gmail.com" }]
requires-python = ">=3.10,<4"
readme = "README.md"
license = "MIT"
dependencies = [
"requests>=2.27.1,<3",
"click>=8.1.8,<9",
"rich>=15,<16",
"tenacity>=9.0.0,<10",
]
[project.urls]
homepage = "https://github.com/inverse/cert-host-scraper"
repository = "https://github.com/inverse/cert-host-scraper"
[project.scripts]
cert-host-scraper = "cert_host_scraper.cli:cli"
[dependency-groups]
dev = [
"pytest>=9,<10",
"pytest-cov>=7.0.0,<8",
"pytest-socket>=0.7.0,<0.8",
"vcrpy>=8.1.1,<9",
]
[build-system]
requires = ["hatchling>=1.21.0", "hatch-vcs>=0.3.0"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = [
"F", # Pyflakes (replaces flake8's core)
"E", # pycodestyle errors
"W", # pycodestyle warnings
"I", # isort (import sorting)
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
"UP", # pyupgrade
"PL", # Pylint rules
"RUF", # Ruff-specific rules
]
ignore = [
"E501",
"PLR0913",
"PLR2004",
]
[tool.pyright]
venvPath = "."
venv = ".venv"
stubPath = "typings"