PyFoxFile 0.19.0__tar.gz → 0.19.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/PKG-INFO +3 -2
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/PyFoxFile.egg-info/PKG-INFO +3 -2
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/pyfoxfile.py +2 -2
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/pyproject.toml +1 -1
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/setup.py +3 -4
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/LICENSE +0 -0
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/PyFoxFile.egg-info/SOURCES.txt +0 -0
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/PyFoxFile.egg-info/dependency_links.txt +0 -0
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/PyFoxFile.egg-info/top_level.txt +0 -0
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/PyFoxFile.egg-info/zip-safe +0 -0
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/README.md +0 -0
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/foxfile.py +0 -0
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/neofoxfile.py +0 -0
- {pyfoxfile-0.19.0 → pyfoxfile-0.19.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: PyFoxFile
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.2
|
|
4
4
|
Summary: A tar like file format name foxfile.
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyFoxFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyFoxFile/archive/master.tar.gz
|
|
@@ -15,6 +15,7 @@ License-File: LICENSE
|
|
|
15
15
|
Dynamic: author
|
|
16
16
|
Dynamic: download-url
|
|
17
17
|
Dynamic: home-page
|
|
18
|
+
Dynamic: license-file
|
|
18
19
|
Dynamic: maintainer
|
|
19
20
|
Dynamic: maintainer-email
|
|
20
21
|
Dynamic: platform
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: PyFoxFile
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.2
|
|
4
4
|
Summary: A tar like file format name foxfile.
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyFoxFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyFoxFile/archive/master.tar.gz
|
|
@@ -15,6 +15,7 @@ License-File: LICENSE
|
|
|
15
15
|
Dynamic: author
|
|
16
16
|
Dynamic: download-url
|
|
17
17
|
Dynamic: home-page
|
|
18
|
+
Dynamic: license-file
|
|
18
19
|
Dynamic: maintainer
|
|
19
20
|
Dynamic: maintainer-email
|
|
20
21
|
Dynamic: platform
|
|
@@ -343,12 +343,12 @@ __file_format_extension__ = __file_format_multi_dict__[__file_format_default__][
|
|
|
343
343
|
__file_format_dict__ = __file_format_multi_dict__[__file_format_default__]
|
|
344
344
|
__project__ = __program_name__
|
|
345
345
|
__project_url__ = "https://github.com/GameMaker2k/PyFoxFile"
|
|
346
|
-
__version_info__ = (0, 19,
|
|
346
|
+
__version_info__ = (0, 19, 2, "RC 1", 1)
|
|
347
347
|
__version_date_info__ = (2025, 3, 7, "RC 1", 1)
|
|
348
348
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
349
349
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
350
350
|
__revision__ = __version_info__[3]
|
|
351
|
-
__revision_id__ = "$Id:
|
|
351
|
+
__revision_id__ = "$Id: 880ed78ee6e0244fe8d2317f3edae5385a331e02 $"
|
|
352
352
|
if(__version_info__[4] is not None):
|
|
353
353
|
__version_date_plusrc__ = __version_date__ + \
|
|
354
354
|
"-" + str(__version_date_info__[4])
|
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
import os
|
|
20
20
|
import re
|
|
21
21
|
import sys
|
|
22
|
-
import pkg_resources
|
|
23
22
|
from setuptools import setup
|
|
24
23
|
|
|
25
24
|
# Open and read the version info file in a Python 2/3 compatible way
|
|
@@ -108,8 +107,8 @@ if(len(sys.argv) > 1 and (sys.argv[1] == "versioninfo" or sys.argv[1] == "getver
|
|
|
108
107
|
print(pymodule_data)
|
|
109
108
|
sys.exit()
|
|
110
109
|
if(len(sys.argv) > 1 and (sys.argv[1] == "sourceinfo" or sys.argv[1] == "getsourceinfo")):
|
|
111
|
-
srcinfofilename = os.path.realpath("."+os.path.sep+
|
|
112
|
-
pymodule['name'])+".egg-info"+os.path.sep+"SOURCES.txt")
|
|
110
|
+
srcinfofilename = os.path.realpath("."+os.path.sep+
|
|
111
|
+
pymodule['name'].replace('-', '_')+".egg-info"+os.path.sep+"SOURCES.txt")
|
|
113
112
|
srcinfofile = open(srcinfofilename, "r")
|
|
114
113
|
srcinfodata = srcinfofile.read()
|
|
115
114
|
srcinfofile.close()
|
|
@@ -123,7 +122,7 @@ if(len(sys.argv) > 1 and (sys.argv[1] == "sourceinfo" or sys.argv[1] == "getsour
|
|
|
123
122
|
if(len(sys.argv) > 1 and sys.argv[1] == "cleansourceinfo"):
|
|
124
123
|
os.system("rm -rfv \""+os.path.realpath("."+os.path.sep+"dist\""))
|
|
125
124
|
os.system("rm -rfv \""+os.path.realpath("."+os.path.sep +
|
|
126
|
-
|
|
125
|
+
pymodule['name'].replace('-', '_')+".egg-info\""))
|
|
127
126
|
sys.exit()
|
|
128
127
|
|
|
129
128
|
if(len(sys.argv) > 1 and (sys.argv[1] == "buildcfg" or sys.argv[1] == "makecfg")):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|