PyNeoFile 0.23.0__tar.gz → 0.24.0__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.23.0 → pyneofile-0.24.0}/PKG-INFO +5 -5
- {pyneofile-0.23.0 → pyneofile-0.24.0}/PyNeoFile.egg-info/PKG-INFO +5 -5
- {pyneofile-0.23.0 → pyneofile-0.24.0}/pyneofile.py +3 -3
- {pyneofile-0.23.0 → pyneofile-0.24.0}/pyproject.toml +4 -3
- {pyneofile-0.23.0 → pyneofile-0.24.0}/setup.py +4 -4
- {pyneofile-0.23.0 → pyneofile-0.24.0}/LICENSE +0 -0
- {pyneofile-0.23.0 → pyneofile-0.24.0}/PyNeoFile.egg-info/SOURCES.txt +0 -0
- {pyneofile-0.23.0 → pyneofile-0.24.0}/PyNeoFile.egg-info/dependency_links.txt +0 -0
- {pyneofile-0.23.0 → pyneofile-0.24.0}/PyNeoFile.egg-info/top_level.txt +0 -0
- {pyneofile-0.23.0 → pyneofile-0.24.0}/PyNeoFile.egg-info/zip-safe +0 -0
- {pyneofile-0.23.0 → pyneofile-0.24.0}/README.md +0 -0
- {pyneofile-0.23.0 → pyneofile-0.24.0}/neofile.py +0 -0
- {pyneofile-0.23.0 → pyneofile-0.24.0}/setup.cfg +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyNeoFile
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.24.0
|
|
4
4
|
Summary: A tar like file format name archivefile.
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyArchiveFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyArchiveFile/neo/master.tar.gz
|
|
7
|
-
Author:
|
|
8
|
-
Author-email:
|
|
9
|
-
Maintainer:
|
|
10
|
-
Maintainer-email: kazuki.suzuki.
|
|
7
|
+
Author: Kazuhana Neko-chan
|
|
8
|
+
Author-email: Kazuhika Kitsune-chan <kazuki.suzuki.fox@gmail.com>, Kazuhana Neko-chan <kazuki.suzuki.cat@gmail.com>, Kazuki Neko-kun <kazuki.suzuki.wa@gmail.com>, Game Maker 2k <gamemaker2k@gmail.com>
|
|
9
|
+
Maintainer: Kazuhika Kitsune-chan
|
|
10
|
+
Maintainer-email: kazuki.suzuki.fox@gmail.com
|
|
11
11
|
License: BSD-3-Clause
|
|
12
12
|
Platform: OS Independent
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyNeoFile
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.24.0
|
|
4
4
|
Summary: A tar like file format name archivefile.
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyArchiveFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyArchiveFile/neo/master.tar.gz
|
|
7
|
-
Author:
|
|
8
|
-
Author-email:
|
|
9
|
-
Maintainer:
|
|
10
|
-
Maintainer-email: kazuki.suzuki.
|
|
7
|
+
Author: Kazuhana Neko-chan
|
|
8
|
+
Author-email: Kazuhika Kitsune-chan <kazuki.suzuki.fox@gmail.com>, Kazuhana Neko-chan <kazuki.suzuki.cat@gmail.com>, Kazuki Neko-kun <kazuki.suzuki.wa@gmail.com>, Game Maker 2k <gamemaker2k@gmail.com>
|
|
9
|
+
Maintainer: Kazuhika Kitsune-chan
|
|
10
|
+
Maintainer-email: kazuki.suzuki.fox@gmail.com
|
|
11
11
|
License: BSD-3-Clause
|
|
12
12
|
Platform: OS Independent
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
@@ -60,12 +60,12 @@ __use_ini_name__ = "neofile.ini"
|
|
|
60
60
|
__program_name__ = "PyNeoFile"
|
|
61
61
|
__project__ = __program_name__
|
|
62
62
|
__project_url__ = "https://github.com/GameMaker2k/PyNeoFile"
|
|
63
|
-
__version_info__ = (0,
|
|
64
|
-
__version_date_info__ = (2025, 10,
|
|
63
|
+
__version_info__ = (0, 24, 0, "RC 1", 1)
|
|
64
|
+
__version_date_info__ = (2025, 10, 29, "RC 1", 1)
|
|
65
65
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
66
66
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
67
67
|
__revision__ = __version_info__[3]
|
|
68
|
-
__revision_id__ = "$Id:
|
|
68
|
+
__revision_id__ = "$Id: ac39c014069a1b61ac574e7d5613aef2b28c6299 $"
|
|
69
69
|
if(__version_info__[4] is not None):
|
|
70
70
|
__version_date_plusrc__ = __version_date__ + \
|
|
71
71
|
"-" + str(__version_date_info__[4])
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "PyNeoFile"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.24.0"
|
|
4
4
|
readme = "README.md"
|
|
5
5
|
license = { text = "BSD-3-Clause" }
|
|
6
6
|
keywords = []
|
|
7
7
|
description = "A tar like file format name archivefile."
|
|
8
8
|
authors = [
|
|
9
|
-
{ name = "
|
|
10
|
-
{ name = "
|
|
9
|
+
{ name = "Kazuhika Kitsune-chan", email = "kazuki.suzuki.fox@gmail.com" },
|
|
10
|
+
{ name = "Kazuhana Neko-chan", email = "kazuki.suzuki.cat@gmail.com" },
|
|
11
|
+
{ name = "Kazuki Neko-kun", email = "kazuki.suzuki.wa@gmail.com" },
|
|
11
12
|
{ name = "Game Maker 2k", email = "gamemaker2k@gmail.com" },
|
|
12
13
|
]
|
|
13
14
|
|
|
@@ -65,10 +65,10 @@ pymodule['verdaterc'] = int(setuppy_dateinfo_exp[4])
|
|
|
65
65
|
pymodule['verdatelist'] = (int(setuppy_dateinfo_exp[0]), int(setuppy_dateinfo_exp[1]), int(
|
|
66
66
|
setuppy_dateinfo_exp[2]), str(setuppy_dateinfo_exp[3]), int(setuppy_dateinfo_exp[4]))
|
|
67
67
|
pymodule['name'] = 'PyArchiveFile'
|
|
68
|
-
pymodule['author'] = '
|
|
69
|
-
pymodule['authoremail'] = 'kazuki.
|
|
70
|
-
pymodule['maintainer'] = '
|
|
71
|
-
pymodule['maintaineremail'] = 'kazuki.suzuki.
|
|
68
|
+
pymodule['author'] = 'Kazuhana Neko-chan'
|
|
69
|
+
pymodule['authoremail'] = 'kazuki.suzuki.cat@gmail.com'
|
|
70
|
+
pymodule['maintainer'] = 'Kazuhika Kitsune-chan'
|
|
71
|
+
pymodule['maintaineremail'] = 'kazuki.suzuki.fox@gmail.com'
|
|
72
72
|
pymodule['description'] = 'A tar like file format name neofile.'
|
|
73
73
|
pymodule['license'] = 'Revised BSD License'
|
|
74
74
|
pymodule['keywords'] = 'neofile neo neofile-neo pyneofile python python-neofile neko nekofile neko-neo nekofile-neo pynekofile python python-nekofile compression tarball gzip tar bzip2 tar-neo lzma xz gz lzma2 xz2 tarlike tarlite'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|