-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (51 loc) · 1.54 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mailcat-osint"
version = "0.1.1"
description = "The only cat who can find existing email addresses by nickname"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "sharsil" },
{ name = "Soxoj", email = "soxoj@protonmail.com" },
]
maintainers = [
{ name = "Soxoj", email = "soxoj@protonmail.com" },
]
keywords = ["email", "osint", "username", "mailcat", "account-search"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet",
"Topic :: Security",
]
dependencies = [
"aiohttp>=3.13.4",
"aiohttp-socks>=0.10",
"aiosmtplib>=2.0",
"dnspython>=2.6.1",
"lxml-html-clean>=0.4.4",
"requests-html>=0.10",
"tqdm>=4.66.3",
]
[project.urls]
Homepage = "https://github.com/sharsil/mailcat"
Repository = "https://github.com/sharsil/mailcat"
Issues = "https://github.com/sharsil/mailcat/issues"
[project.scripts]
mailcat = "mailcat:main"
[tool.setuptools.packages.find]
where = ["src"]