-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.42 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
[tool.poetry]
name = "hstsparser"
version = "1.2.1"
description = "A tool to parse Firefox and Chrome HSTS databases into forensic artifacts."
authors = ["Daniel Milnes <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/thebeanogamer/hstsparser"
repository = "https://github.com/thebeanogamer/hstsparser"
documentation = "https://github.com/thebeanogamer/hstsparser"
keywords = ["chrome", "firefox", "dfir", "forensics", "hsts"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = ">=3.9"
prettytable = ">=0.7.2"
[tool.poetry.scripts]
hstsparser = "hstsparser:main"
[tool.poetry.group.windows.dependencies]
pyinstaller = [{ version = "^5.12.0", python = ">=3.9,<3.12" }]
pywin32-ctypes = "^0.2.0"
pefile = "^2023.2.7"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
flake8-bandit = "^4.1.1"
flake8-bugbear = "^23.5.9"
flake8-import-order = "^0.18.2"
flake8-string-format = "^0.3.0"
flake8-tidy-imports = "^4.8.0"
flake8-todo = "^0.7"
safety = "^2.3.5"
flake8-formatter-junit-xml = "^0.0.6"
[build-system]
requires = ["poetry-core>=1.3"]
build-backend = "poetry.core.masonry.api"