-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.06 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "make-lead-gen"
version = "0.1.0"
requires-python = ">=3.14"
dependencies = [
"python-dotenv==1.0.1",
"requests==2.31.0",
"beautifulsoup4==4.12.2",
"pydantic>=2.6.1",
]
[project.optional-dependencies]
dev = [
"pytest==8.0.0",
"ruff>=0.9.0",
"pyright>=1.1.400",
]
[tool.setuptools]
packages = { find = { where = ["."] } }
py-modules = ["main"]
[tool.setuptools.package-dir]
app = "app"
[tool.ruff]
line-length = 88
target-version = "py314"
exclude = [
"venv", ".venv", "__pycache__", "build", "dist",
"logs", "automation", ".pytest_cache", "htmlcov", ".coverage"
]
[tool.ruff.lint]
select = ["E", "F", "I", "B"]
ignore = ["F401", "E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pyright]
include = ["app"]
exclude = ["**/node_modules", "**/.*", "**/__pycache__", "build", "dist", "venv", ".venv"]
pythonVersion = "3.14"
typeCheckingMode = "strict"
useLibraryCodeForTypes = true
reportMissingImports = true