-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (56 loc) · 1.42 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nebraska"
version = "1.0.0"
description = "Professional username reconnaissance tool — Sherlock vNext"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
authors = [{ name = "Nebraska Project" }]
keywords = ["osint", "username", "reconnaissance", "security"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
]
dependencies = [
"httpx[http2]>=0.27,<1.0",
"pydantic>=2.6,<3.0",
"typer[all]>=0.12,<1.0",
"rich>=13.7,<14.0",
"pyyaml>=6.0,<7.0",
"jinja2>=3.1,<4.0",
"aiosqlite>=0.20,<1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0,<9.0",
"pytest-asyncio>=0.23,<1.0",
"pytest-cov>=5.0,<6.0",
"ruff>=0.3,<1.0",
"mypy>=1.9,<2.0",
]
api = [
"fastapi>=0.110,<1.0",
"uvicorn[standard]>=0.29,<1.0",
]
[project.scripts]
nebraska = "nebraska.cli:app"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = ["slow: marks tests as slow"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true