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.
@@ -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,2 @@
1
+ # Runegrad
2
+ Official Python package for Runegrad launcher integrations.
@@ -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,7 @@
1
+ README.md
2
+ setup.py
3
+ runegrad/__init__.py
4
+ runegrad.egg-info/PKG-INFO
5
+ runegrad.egg-info/SOURCES.txt
6
+ runegrad.egg-info/dependency_links.txt
7
+ runegrad.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ runegrad
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )