-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (32 loc) · 1.03 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
[project]
name = "node-sea-scallop"
version = "0.1.2"
description = "Scallop is a multi-tool for unpacking, repacking, and script stomping nodejs single executable applications (SEA)s."
authors = [
{name = "Darius Houle",email = "darius@x64.ooo"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11"
keywords = ["node", "nodejs", "sea", "single", "file", "executable", "unpack", "repack", "script", "stomp", "javascript", "scallop"]
dependencies = [
"lief (>=0.16.5,<0.17.0)",
"typer (>=0.15.2,<0.16.0)"
]
[project.urls]
Homepage = "https://github.com/dariushoule/node-sea-scallop"
Repository = "https://github.com/dariushoule/node-sea-scallop"
Issues = "https://github.com/dariushoule/node-sea-scallop/issues"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [
{ include = "scallop" }
]
[tool.poetry.scripts]
scallop = 'scallop.cli:app'
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"