Skip to content

Commit d0d8789

Browse files
committed
Cleanup and v1.0.1
1 parent de98b33 commit d0d8789

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,6 @@ dmypy.json
131131
cython_debug/
132132

133133
sample_hives/
134-
qdarkstyle/
134+
qdarkstyle/
135+
136+
.python-version

exespy/helpers.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99

1010
APP_NAME = "Exe Spy"
1111
APP_NAME_SHORT = "exespy"
12-
VERSION = (1, 0, 0)
12+
VERSION = (1, 0, 1)
1313
ORGANIZATION_NAME = "Andy Smith"
14-
ORGANIZATION_DOMAIN = "ajsmith.us"
14+
ORGANIZATION_DOMAIN = "ajsmith.org"
1515
ABOUT_TEXT = f"""\
1616
{APP_NAME}
1717
{".".join(str(i) for i in VERSION)}
18-
Copyright (C) 2022 Andy Smith
18+
Copyright (C) 2024 Andy Smith
1919
2020
This program is free software: you can redistribute it and/or modify
2121
it under the terms of the GNU General Public License as published by

exespy/pe_file.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
from dataclasses import dataclass
21
import hashlib
2+
import io
3+
import logging
34
import os
45
import time
5-
import logging
6-
import io
6+
from dataclasses import dataclass
77

8-
import pefile
98
import lief
9+
import pefile
1010

1111

1212
@dataclass

installer.iss

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define AppName "ExeSpy"
5-
#define AppVersion "1.0.0"
5+
#define AppVersion "1.0.1"
66
#define AppPublisher "Andy Smith"
7-
#define AppURL "https://ajsmith.us/projects/exespy/"
7+
#define AppURL "https://ajsmith.org/projects/exespy/"
88
#define AppExeName "exespy.exe"
99

1010
[Setup]

setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import find_packages, setup
22

33
with open("README.md", "r", encoding="utf-8") as fh:
44
long_description = fh.read()
55

66
setup(
77
name="exespy",
8-
version="1.0.0",
8+
version="1.0.1",
99
author="Andy Smith",
1010
description="Cross-platform PE viewer",
1111
long_description=long_description,
@@ -17,6 +17,8 @@
1717
"Programming Language :: Python :: 3.8",
1818
"Programming Language :: Python :: 3.9",
1919
"Programming Language :: Python :: 3.10",
20+
"Programming Language :: Python :: 3.11",
21+
"Programming Language :: Python :: 3.12",
2022
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2123
"Operating System :: OS Independent",
2224
"Environment :: Win32 (MS Windows)",

0 commit comments

Comments
 (0)