-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
47 lines (45 loc) · 1.57 KB
/
setup.py
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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="exespy",
version="1.0.1",
author="Andy Smith",
description="Cross-platform PE viewer",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/andyjsmith/Exe-Spy",
keywords=["pe", "forensics", "windows forensics", "forensics tools"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Environment :: X11 Applications :: Qt",
"Environment :: MacOS X",
],
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"PySide6",
"pefile",
"lief",
"icoextract",
"yara-python",
"iced-x86",
"python-magic-bin; platform_system == 'Windows' or platform_system == 'Darwin'",
"python-magic; platform_system != 'Windows' and platform_system != 'Darwin'",
"vt-py",
"matplotlib",
],
entry_points={
"console_scripts": ["exespy=exespy.exespy:main"],
},
include_package_data=True,
)