forked from wrrulos/mcptool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 915 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MCPTool"
description = "A tool for Minecraft pentesting"
version = "1.0.4"
readme = "README.md"
requires-python = ">=3.6"
keywords = ["minecraft", "pentesting", "tool", "security"]
authors = [
{name = "Pedro Agustin Vega (wrrulos)", email = "[email protected]"}
]
dependencies = [
"easyjsonpy",
"mccolors",
"mcstatus",
"mcrcon",
"requests",
"loguru",
"pypresence",
"plyer",
"nbtlib"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {text = "MIT License"}
[project.urls]
homepage = "https://mcptool.net"
documentation = "https://mcptool.net/docs"
repository = "https://github.com/wrrulos/MCPTool"
[project.scripts]
mcptool = "mcptool.__main__:main"