PyNeoFile 0.19.8__tar.gz → 0.19.10__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.
- {pyneofile-0.19.8 → pyneofile-0.19.10}/PKG-INFO +1 -1
- {pyneofile-0.19.8 → pyneofile-0.19.10}/PyNeoFile.egg-info/PKG-INFO +1 -1
- {pyneofile-0.19.8 → pyneofile-0.19.10}/neofile.py +10 -22
- {pyneofile-0.19.8 → pyneofile-0.19.10}/pyneofile.py +6 -6
- {pyneofile-0.19.8 → pyneofile-0.19.10}/pyproject.toml +1 -1
- {pyneofile-0.19.8 → pyneofile-0.19.10}/LICENSE +0 -0
- {pyneofile-0.19.8 → pyneofile-0.19.10}/PyNeoFile.egg-info/SOURCES.txt +0 -0
- {pyneofile-0.19.8 → pyneofile-0.19.10}/PyNeoFile.egg-info/dependency_links.txt +0 -0
- {pyneofile-0.19.8 → pyneofile-0.19.10}/PyNeoFile.egg-info/top_level.txt +0 -0
- {pyneofile-0.19.8 → pyneofile-0.19.10}/PyNeoFile.egg-info/zip-safe +0 -0
- {pyneofile-0.19.8 → pyneofile-0.19.10}/README.md +0 -0
- {pyneofile-0.19.8 → pyneofile-0.19.10}/setup.cfg +0 -0
- {pyneofile-0.19.8 → pyneofile-0.19.10}/setup.py +0 -0
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
1
|
#!/usr/bin/env python
|
|
3
|
-
# -*- coding:
|
|
2
|
+
# -*- coding: UTF-8 -*-
|
|
4
3
|
|
|
5
|
-
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
4
|
+
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
|
|
6
5
|
|
|
7
6
|
"""
|
|
8
7
|
neofile.py — CLI for the PyNeoFile format (.neo).
|
|
@@ -16,25 +15,14 @@ New:
|
|
|
16
15
|
import os, sys, argparse, tempfile, tarfile, io, base64
|
|
17
16
|
import pyneofile as N
|
|
18
17
|
|
|
19
|
-
__project__ =
|
|
20
|
-
__program_name__ =
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
__file_format_default__ = pyneofile.__file_format_default__
|
|
28
|
-
__file_format_multi_dict__ = pyneofile.__file_format_multi_dict__
|
|
29
|
-
__use_new_style__ = pyneofile.__use_new_style__
|
|
30
|
-
__use_advanced_list__ = pyneofile.__use_advanced_list__
|
|
31
|
-
__use_alt_inode__ = pyneofile.__use_alt_inode__
|
|
32
|
-
__project_url__ = pyneofile.__project_url__
|
|
33
|
-
__version_info__ = pyneofile.__version_info__
|
|
34
|
-
__version_date_info__ = pyneofile.__version_date_info__
|
|
35
|
-
__version_date__ = pyneofile.__version_date__
|
|
36
|
-
__version_date_plusrc__ = pyneofile.__version_date_plusrc__
|
|
37
|
-
__version__ = pyneofile.__version__
|
|
18
|
+
__project__ = N.__project__
|
|
19
|
+
__program_name__ = N.__program_name__
|
|
20
|
+
__project_url__ = N.__project_url__
|
|
21
|
+
__version_info__ = N.__version_info__
|
|
22
|
+
__version_date_info__ = N.__version_date_info__
|
|
23
|
+
__version_date__ = N.__version_date__
|
|
24
|
+
__version_date_plusrc__ = N.__version_date_plusrc__
|
|
25
|
+
__version__ = N.__version__
|
|
38
26
|
|
|
39
27
|
def _stdout_bin():
|
|
40
28
|
return getattr(sys.stdout, "buffer", sys.stdout)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
# -*- coding:
|
|
3
|
-
from __future__ import print_function, unicode_literals,
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
# -*- coding: UTF-8 -*-
|
|
3
|
+
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
|
|
4
4
|
|
|
5
5
|
"""
|
|
6
6
|
pyneofile.py — Alternate ArchiveFile core with Py2/3 compatible logic.
|
|
@@ -56,12 +56,12 @@ except Exception:
|
|
|
56
56
|
__program_name__ = "PyNeoFile"
|
|
57
57
|
__project__ = __program_name__
|
|
58
58
|
__project_url__ = "https://github.com/GameMaker2k/PyNeoFile"
|
|
59
|
-
__version_info__ = (0, 19,
|
|
60
|
-
__version_date_info__ = (2025, 8,
|
|
59
|
+
__version_info__ = (0, 19, 10, "RC 1", 1)
|
|
60
|
+
__version_date_info__ = (2025, 8, 15, "RC 1", 1)
|
|
61
61
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
62
62
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
63
63
|
__revision__ = __version_info__[3]
|
|
64
|
-
__revision_id__ = "$Id:
|
|
64
|
+
__revision_id__ = "$Id: f223ede8510b87bcffab7721f8b0f0171431dd4f $"
|
|
65
65
|
if(__version_info__[4] is not None):
|
|
66
66
|
__version_date_plusrc__ = __version_date__ + \
|
|
67
67
|
"-" + str(__version_date_info__[4])
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|