PyCatFile 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.
- {pycatfile-0.19.0 → pycatfile-0.19.2}/PKG-INFO +3 -2
- {pycatfile-0.19.0 → pycatfile-0.19.2}/PyCatFile.egg-info/PKG-INFO +3 -2
- {pycatfile-0.19.0 → pycatfile-0.19.2}/pycatfile.py +2 -2
- {pycatfile-0.19.0 → pycatfile-0.19.2}/pyproject.toml +1 -1
- {pycatfile-0.19.0 → pycatfile-0.19.2}/setup.py +3 -4
- {pycatfile-0.19.0 → pycatfile-0.19.2}/LICENSE +0 -0
- {pycatfile-0.19.0 → pycatfile-0.19.2}/PyCatFile.egg-info/SOURCES.txt +0 -0
- {pycatfile-0.19.0 → pycatfile-0.19.2}/PyCatFile.egg-info/dependency_links.txt +0 -0
- {pycatfile-0.19.0 → pycatfile-0.19.2}/PyCatFile.egg-info/top_level.txt +0 -0
- {pycatfile-0.19.0 → pycatfile-0.19.2}/PyCatFile.egg-info/zip-safe +0 -0
- {pycatfile-0.19.0 → pycatfile-0.19.2}/README.md +0 -0
- {pycatfile-0.19.0 → pycatfile-0.19.2}/catfile.py +0 -0
- {pycatfile-0.19.0 → pycatfile-0.19.2}/neocatfile.py +0 -0
- {pycatfile-0.19.0 → pycatfile-0.19.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: PyCatFile
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.2
|
|
4
4
|
Summary: A tar like file format name catfile after unix cat command (concatenate files) .
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyCatFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyCatFile/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: PyCatFile
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.2
|
|
4
4
|
Summary: A tar like file format name catfile after unix cat command (concatenate files) .
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyCatFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyCatFile/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
|
|
@@ -353,12 +353,12 @@ __file_format_extension__ = __file_format_multi_dict__[__file_format_default__][
|
|
|
353
353
|
__file_format_dict__ = __file_format_multi_dict__[__file_format_default__]
|
|
354
354
|
__project__ = __program_name__
|
|
355
355
|
__project_url__ = "https://github.com/GameMaker2k/PyCatFile"
|
|
356
|
-
__version_info__ = (0, 19,
|
|
356
|
+
__version_info__ = (0, 19, 2, "RC 1", 1)
|
|
357
357
|
__version_date_info__ = (2025, 3, 7, "RC 1", 1)
|
|
358
358
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
359
359
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
360
360
|
__revision__ = __version_info__[3]
|
|
361
|
-
__revision_id__ = "$Id:
|
|
361
|
+
__revision_id__ = "$Id: 139442616cbb5df727431cb137d571447ee86d71 $"
|
|
362
362
|
if(__version_info__[4] is not None):
|
|
363
363
|
__version_date_plusrc__ = __version_date__ + \
|
|
364
364
|
"-" + 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
|
-
|
|
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
|