forked from bongtrop/hbctool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 1008 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
[tool.poetry]
name = "hbctool"
version = "0.1.3"
description = "A command-line interface for disassembling and assembling the Hermes Bytecode."
authors = ["bongtrop"]
keywords = ["hbc", "hermes", "bytecode", "reverse", "hacking"]
classifiers = [
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/bongtrop/hbctool"
repository = "https://github.com/bongtrop/hbctool"
documentation = "https://github.com/bongtrop/hbctool"
[tool.poetry.dependencies]
python = "^3.6"
docopt = "^0.6.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
hbctool = "hbctool:main"