-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
78 lines (62 loc) · 1.79 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "noseyparker-explorer"
authors = [
{name = "Brad Larsen", email = "[email protected]"},
]
description = "Interactive results explorer and annotator for Nosey Parker"
readme = "README.md"
version = "0.24.0-dev"
requires-python = ">=3.10"
dependencies = [
"aiosqlite>=0.20.0",
"duckdb>=1.1.3",
"filelock>=3.16.1",
"rich>=13.9.4",
"textual>=1.0.0",
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Topic :: Security",
]
[project.scripts]
noseyparker-explorer = "noseyparker_explorer.main:main"
[project.urls]
Repository = "https://github.com/praetorian-inc/noseyparkerexplorer"
Issues = "https://github.com/praetorian-inc/noseyparkerexplorer/issues"
Changelog = "https://github.com/praetorian-inc/noseyparkerexplorer/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [
"autoflake>=2.3.1",
"black>=24.10.0",
"flake8>=7.1.1",
"ipython>=8.31.0",
"isort>=5.13.2",
"pip-licenses>=5.0.0",
"py-spy>=0.4.0",
"pytest>=8.3.4",
"python-lsp-server>=1.12.0",
"shiv>=1.0.8",
"textual-dev>=1.7.0",
"types-requests>=2.32.0.20241016",
]
ci = [
"flake8>=7.1.1",
"mypy>=1.14.1",
"pytest>=8.3.4",
"shiv>=1.0.8",
"types-requests>=2.32.0.20241016",
]