-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
81 lines (72 loc) · 1.53 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# file: pyproject.toml
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "phoneint"
version = "0.1.0"
description = "Phone Number OSINT (lawful/ethical use only)"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [{name = "phoneint contributors"}]
dependencies = [
"phonenumbers>=9.0.0",
"click>=8.1.0",
"httpx>=0.27.0",
"pydantic>=2.6.0",
"PyYAML>=6.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
gui = [
"PySide6>=6.6.0",
"qasync>=0.27.0",
]
pdf = [
"reportlab>=4.0.0",
]
dev = [
"black>=24.0.0",
"mypy>=1.8.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"types-PyYAML>=6.0.12.20240311",
]
[project.scripts]
phoneint = "phoneint.cli:main"
[tool.setuptools.packages.find]
include = ["phoneint*"]
[tool.setuptools.package-data]
phoneint = ["py.typed", "data/*.json"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_ignores = true
no_implicit_optional = true
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
disallow_any_generics = true
disallow_subclassing_any = true
strict_equality = true
show_error_codes = true
pretty = true
mypy_path = ["stubs"]
[[tool.mypy.overrides]]
module = [
"phonenumbers.*",
"yaml.*",
"dotenv.*",
"PySide6.*",
"qasync.*",
"reportlab.*",
]
ignore_missing_imports = true