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.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: PyFoxFile
3
- Version: 0.19.0
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.2
1
+ Metadata-Version: 2.4
2
2
  Name: PyFoxFile
3
- Version: 0.19.0
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, 0, "RC 1", 1)
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: 6aa5369a7ff40530a099735203fd1bf1b378bbf4 $"
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])
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "PyFoxFile"
3
- version = "0.19.0"
3
+ version = "0.19.2"
4
4
  readme = "README.md"
5
5
  license = { text = "BSD-3-Clause" }
6
6
  keywords = []
@@ -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+pkg_resources.to_filename(
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
- pkg_resources.to_filename(pymodule['name'])+".egg-info\""))
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