-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
32 lines (27 loc) · 1.06 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
[build-system]
requires = ["setuptools>=61", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dfir-unfurl"
authors = [{name = "Ryan Benson", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3"
]
dynamic = ["dependencies", "optional-dependencies", "version"]
description = "Unfurl takes a URL and expands (\"unfurls\") it into a directed graph"
keywords=["unfurl", "forensics", "dfir", "reverse-engineering", "security", "osint", "digital forensics"]
[tool.setuptools_scm]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = { attr = "unfurl.__version__" }
optional-dependencies.ui = { file = ["requirements-ui.txt"] }
optional-dependencies.all = { file = ["requirements-all.txt"] }
[project.scripts]
unfurl = "unfurl.cli:command_line_interface"
unfurl_app = "unfurl.app:web_app"
[project.urls]
Home = "https://github.com/obsidianforensics/unfurl"