-
-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (47 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (47 loc) · 1.15 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "user-scanner"
version = "1.4.0.2"
description = "Check username availability across multiple popular platforms"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Kaif", email = "kaifcodec@gmail.com"}
]
dependencies = [
"httpx[http2]>=0.27,<0.29",
"socksio>=1.0,<2",
"colorama>=0.4,<1"
]
requires-python = ">=3.10"
keywords = ["osint", "email-osint", "username-osint", "python", "cli-tool", "cybersecurity", "threat-intelligence", "security"]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "pytest-anyio", "anyio[trio]"]
[project.urls]
Homepage = "https://github.com/kaifcodec/user-scanner"
[project.scripts]
user-scanner = "user_scanner.__main__:main"
[tool.flit.module]
name = "user_scanner"
[tool.flit.sdist]
exclude = [
"tests/",
"docs/",
".github/",
".git",
".gitignore",
".ruff_cache/",
"**/.ruff_cache/**",
"__pycache__/",
"**/__pycache__/**",
"*.pyc",
"rm_pycache.py",
"che.py"
]
[tool.pytest.ini_options]
pythonpath = "."
testpaths = ["tests"]
[tool.ruff.lint]
ignore = ["E701", "E401"]