gamebase 0.0.1__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.
- gamebase-0.0.1/LICENSE +1 -0
- gamebase-0.0.1/PKG-INFO +12 -0
- gamebase-0.0.1/README.md +1 -0
- gamebase-0.0.1/pyproject.toml +18 -0
- gamebase-0.0.1/setup.cfg +4 -0
- gamebase-0.0.1/src/gamebase/__init__.py +1 -0
- gamebase-0.0.1/src/gamebase.egg-info/PKG-INFO +12 -0
- gamebase-0.0.1/src/gamebase.egg-info/SOURCES.txt +8 -0
- gamebase-0.0.1/src/gamebase.egg-info/dependency_links.txt +1 -0
- gamebase-0.0.1/src/gamebase.egg-info/top_level.txt +1 -0
gamebase-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
LICENSE
|
gamebase-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gamebase
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Cross-platform GameBase frontend
|
|
5
|
+
Author: Neil English
|
|
6
|
+
License-Expression: GPL-3.0-or-later
|
|
7
|
+
Requires-Python: >=3.14
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Dynamic: license-file
|
|
11
|
+
|
|
12
|
+
README.md
|
gamebase-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
README.md
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "gamebase"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Cross-platform GameBase frontend"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.14"
|
|
11
|
+
license = "GPL-3.0-or-later"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Neil English"},
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[tool]
|
|
17
|
+
[tool.pyside6-project]
|
|
18
|
+
files = ["src/gamebase/__init__.py"]
|
gamebase-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gamebase
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Cross-platform GameBase frontend
|
|
5
|
+
Author: Neil English
|
|
6
|
+
License-Expression: GPL-3.0-or-later
|
|
7
|
+
Requires-Python: >=3.14
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Dynamic: license-file
|
|
11
|
+
|
|
12
|
+
README.md
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gamebase
|