-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.cfg
55 lines (49 loc) · 1.02 KB
/
setup.cfg
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
[metadata]
name = pecli
version = 0.1.4
author = Tek
author_email = [email protected]
description = Another PE info tool
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Te-k/pecli
keywords = security, malware
license = MIT
classifiers =
License :: OSI Approved :: MIT License
Development Status :: 5 - Production/Stable
Intended Audience :: Information Technology
Operating System :: OS Independent
Programming Language :: Python
[options]
packages = find:
package_dir =
= ./
include_package_data = True
python_requires = >= 3.5
install_requires =
pefile
yara-python
python-magic
ipython
virustotal-api >=1.1.11
[options.packages.find]
where = ./
[options.entry_points]
console_scripts =
pecli = pecli.main:main
[options.package_data]
* = *.txt, *.rst, *.yar
[flake8]
extend-ignore = E203
max-line-length = 120
exclude =
.git,
*Tests.py,
__pycache__,
venv,
old,
build,
dist
[mypy]
ignore_missing_imports = True