-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (21 loc) · 760 Bytes
/
pyproject.toml
File metadata and controls
25 lines (21 loc) · 760 Bytes
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
[project]
name = "leadhunter-pro"
version = "1.1.0"
description = "Multi-engine lead scraper + contact enricher. Finds businesses via search engines, extracts emails and phones, scores lead quality."
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = ["lead-generation", "web-scraping", "email-extraction", "python"]
readme = "README.md"
[project.urls]
Repository = "https://github.com/FAAQJAVED/Leadhunter_Pro"
Homepage = "https://github.com/FAAQJAVED/Leadhunter_Pro"
"Bug Tracker" = "https://github.com/FAAQJAVED/Leadhunter_Pro/issues"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--tb=short -q"