-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.01 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
39
40
41
42
43
44
45
46
47
[project]
name = "protodeep"
version = "1.1.2"
authors = [
{name = "mxrch", email = "mxrch.dev@pm.me"},
]
description = "A tool to help reversing protobuf."
readme = "README.md"
requires-python = ">=3.10"
keywords = ["protobuf", "reverse"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.poetry.scripts]
protodeep = "protodeep.protodeep:main"
[tool.setuptools.packages.find]
include = ["protodeep", "protodeep.*"]
[tool.poetry]
name = "protodeep"
version = "1.1.2"
description = "A tool to help reversing protobuf."
authors = ["mxrch <mxrch.dev@pm.me>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
six = "^1.16.0"
rich = "^13.9.1"
rich-argparse = "^1.5.2"
grpcio-tools = "^1.66.2"
protobuf = "^5.28.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"