runegrad 0.1.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.
- runegrad-0.1.0/PKG-INFO +21 -0
- runegrad-0.1.0/README.md +2 -0
- runegrad-0.1.0/runegrad/__init__.py +1 -0
- runegrad-0.1.0/runegrad.egg-info/PKG-INFO +21 -0
- runegrad-0.1.0/runegrad.egg-info/SOURCES.txt +7 -0
- runegrad-0.1.0/runegrad.egg-info/dependency_links.txt +1 -0
- runegrad-0.1.0/runegrad.egg-info/top_level.txt +1 -0
- runegrad-0.1.0/setup.cfg +4 -0
- runegrad-0.1.0/setup.py +19 -0
runegrad-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: runegrad
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Runegrad launcher and distribution platform
|
|
5
|
+
Home-page: https://github.com/runegrad
|
|
6
|
+
Author: Runegrad
|
|
7
|
+
Author-email: runegrad@gmail.com
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.6
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: home-page
|
|
18
|
+
Dynamic: requires-python
|
|
19
|
+
Dynamic: summary
|
|
20
|
+
|
|
21
|
+
Runegrad is a game launcher and distribution platform focused on fair developer revenue (85/15 split) and accessible game pricing.
|
runegrad-0.1.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Runegrad launcher and distribution platform placeholder
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: runegrad
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Runegrad launcher and distribution platform
|
|
5
|
+
Home-page: https://github.com/runegrad
|
|
6
|
+
Author: Runegrad
|
|
7
|
+
Author-email: runegrad@gmail.com
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.6
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: home-page
|
|
18
|
+
Dynamic: requires-python
|
|
19
|
+
Dynamic: summary
|
|
20
|
+
|
|
21
|
+
Runegrad is a game launcher and distribution platform focused on fair developer revenue (85/15 split) and accessible game pricing.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
runegrad
|
runegrad-0.1.0/setup.cfg
ADDED
runegrad-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="runegrad",
|
|
5
|
+
version="0.1.0",
|
|
6
|
+
description="Runegrad launcher and distribution platform",
|
|
7
|
+
long_description="Runegrad is a game launcher and distribution platform focused on fair developer revenue (85/15 split) and accessible game pricing.",
|
|
8
|
+
author="Runegrad",
|
|
9
|
+
author_email="runegrad@gmail.com",
|
|
10
|
+
url="https://github.com/runegrad",
|
|
11
|
+
packages=find_packages(),
|
|
12
|
+
classifiers=[
|
|
13
|
+
"Development Status :: 1 - Planning",
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
],
|
|
18
|
+
python_requires=">=3.6",
|
|
19
|
+
)
|