-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
68 lines (61 loc) · 1.38 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "spurious_emu"
version = "0.4.1"
description = "VBA static and dynamic analysis tool for malware analysts"
authors = ["Louis Dubois <ldbo@protonmail.com>"]
license = "AGPL-3.0-or-later"
readme= "Readme.md"
homepage = "https://github.com/ldbo/SpuriousEmu"
packages = [{include = "emu"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Visual Basic",
"Topic :: Security",
"Topic :: Software Development :: Interpreters",
]
[tool.poetry.scripts]
emu = "emu.__main__:main"
[tool.poetry.dependencies]
python = "^3.8"
oletools = "^0.55.1"
python-magic = "^0.4.18"
prettytable = "^0.7.2"
pyparsing = "^2.4.7"
[tool.poetry.dev-dependencies]
ipython = "^7.17.0"
nose = "^1.3.7"
coverage = "^5.2.1"
mypy = "^0.782"
networkx = "^2.4"
lxml = "^4.5.2"
matplotlib = "^3.3.1"
ipdb = "^0.13.3"
bump2version = "^1.0.0"
coveralls = "^2.1.2"
black = "^19.10b0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 80
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.venv
| _build
| build
| dist
)/
)
'''