-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 771 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 771 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
32
33
34
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hmv"
version = "0.1.2"
description = "HMV-CLI: HackMyVM Advanced Versatile Operations CLI - A powerful toolkit for machine management"
authors = [
{name = "Ouba"}
]
dependencies = [
"httpx",
"typer",
"rich",
"selectolax",
"keyring",
"mega.py",
]
readme = "README.md"
keywords = ["hackmyvm", "ctf", "cli", "cybersecurity", "havoc"]
[project.urls]
Homepage = "https://github.com/setyanoegraha/hackmyvm-commandlineinterface"
Repository = "https://github.com/setyanoegraha/hackmyvm-commandlineinterface"
[project.scripts]
hmv = "hmv.main:main"
[tool.setuptools]
packages = ["hmv", "hmv.modules"]
[tool.setuptools.package-dir]
"" = "."