File tree 5 files changed +16
-12
lines changed
5 files changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -131,4 +131,6 @@ dmypy.json
131
131
cython_debug /
132
132
133
133
sample_hives /
134
- qdarkstyle /
134
+ qdarkstyle /
135
+
136
+ .python-version
Original file line number Diff line number Diff line change 9
9
10
10
APP_NAME = "Exe Spy"
11
11
APP_NAME_SHORT = "exespy"
12
- VERSION = (1 , 0 , 0 )
12
+ VERSION = (1 , 0 , 1 )
13
13
ORGANIZATION_NAME = "Andy Smith"
14
- ORGANIZATION_DOMAIN = "ajsmith.us "
14
+ ORGANIZATION_DOMAIN = "ajsmith.org "
15
15
ABOUT_TEXT = f"""\
16
16
{ APP_NAME }
17
17
{ "." .join (str (i ) for i in VERSION )}
18
- Copyright (C) 2022 Andy Smith
18
+ Copyright (C) 2024 Andy Smith
19
19
20
20
This program is free software: you can redistribute it and/or modify
21
21
it under the terms of the GNU General Public License as published by
Original file line number Diff line number Diff line change 1
- from dataclasses import dataclass
2
1
import hashlib
2
+ import io
3
+ import logging
3
4
import os
4
5
import time
5
- import logging
6
- import io
6
+ from dataclasses import dataclass
7
7
8
- import pefile
9
8
import lief
9
+ import pefile
10
10
11
11
12
12
@dataclass
Original file line number Diff line number Diff line change 2
2
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
3
4
4
#define AppName " ExeSpy"
5
- #define AppVersion " 1.0.0 "
5
+ #define AppVersion " 1.0.1 "
6
6
#define AppPublisher " Andy Smith"
7
- #define AppURL " https://ajsmith.us /projects/exespy/"
7
+ #define AppURL " https://ajsmith.org /projects/exespy/"
8
8
#define AppExeName " exespy.exe"
9
9
10
10
[Setup]
Original file line number Diff line number Diff line change 1
- from setuptools import setup , find_packages
1
+ from setuptools import find_packages , setup
2
2
3
3
with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
4
4
long_description = fh .read ()
5
5
6
6
setup (
7
7
name = "exespy" ,
8
- version = "1.0.0 " ,
8
+ version = "1.0.1 " ,
9
9
author = "Andy Smith" ,
10
10
description = "Cross-platform PE viewer" ,
11
11
long_description = long_description ,
17
17
"Programming Language :: Python :: 3.8" ,
18
18
"Programming Language :: Python :: 3.9" ,
19
19
"Programming Language :: Python :: 3.10" ,
20
+ "Programming Language :: Python :: 3.11" ,
21
+ "Programming Language :: Python :: 3.12" ,
20
22
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
21
23
"Operating System :: OS Independent" ,
22
24
"Environment :: Win32 (MS Windows)" ,
You can’t perform that action at this time.
0 commit comments