-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 1.64 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mailaccess"
version = "0.6.3"
description = "Open-source OSINT email intelligence tool"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Katriel Moses" }]
keywords = ["osint", "email", "security", "intelligence"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"fastapi>=0.111",
"uvicorn[standard]>=0.29",
"sqlalchemy>=2.0",
"aiosqlite>=0.20",
"asyncpg>=0.29",
"pydantic[email]>=2.0",
"pydantic-settings>=2.3",
"httpx>=0.27",
"websockets>=12",
"dnspython>=2.6",
"python-whois>=0.9",
"typer[all]>=0.25.1",
"rich>=13",
"weasyprint>=62",
"stix2>=3.0",
"holehe>=1.61",
"user-scanner>=1.0",
"python-dotenv>=1.0",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/YOUR_USERNAME/mailaccess"
Documentation = "https://github.com/YOUR_USERNAME/mailaccess/docs"
Issues = "https://github.com/YOUR_USERNAME/mailaccess/issues"
[project.optional-dependencies]
ghunt = [
"ghunt>=2.3",
]
dev = [
"pytest>=8",
"pytest-asyncio>=0.23",
"httpx>=0.27",
"ruff>=0.4",
"mypy>=1.10",
]
[project.scripts]
mailaccess = "cli.main:app"
[tool.hatch.build.targets.wheel]
packages = ["backend", "cli"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.11"
strict = true