-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 815 Bytes
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
[tool.poetry]
name = "kernelinit"
version = "1.2.3"
description = "A tool for automating setup of kernel pwn challenges"
authors = ["Myldero"]
readme = "README.md"
homepage = "https://github.com/Myldero/kernelinit"
repository = "https://github.com/Myldero/kernelinit"
exclude = []
include = ["kernelinit/templates/*"]
license = "MIT"
classifiers = [
'Environment :: Console',
'Programming Language :: Python :: 3',
'Topic :: Security',
]
packages = [
{ include = "kernelinit" }
]
[tool.poetry.scripts]
kernelinit = 'kernelinit.main:main'
[tool.poetry.dependencies]
python-libarchive = '^4.2.1'
pexpect = '^4.8.0'
vmlinux-to-elf = { git = "https://github.com/Myldero/vmlinux-to-elf.git", rev = "develop" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"