makelovr 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.
makelovr-0.1.0/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2026 Sheldi
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,4 @@
1
+ include README.md
2
+ include LICENSE
3
+
4
+ recursive-include makelovr/templates *.lua
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: makelovr
3
+ Version: 0.1.0
4
+ Summary: Distribution tool for LÖVR games
5
+ Home-page: https://github.com/zayfire/makelovr
6
+ Author: Zayfire Studios
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: requests
14
+ Dynamic: author
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: license-file
20
+ Dynamic: requires-dist
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ # makelövr
25
+
26
+ A distribution tool for LÖVR games.
27
+
28
+ ## Install
29
+
30
+ ```bash
31
+ pip install makelovr
32
+ ```
33
+
34
+ ## Usage
35
+
36
+ ### Initialize a project:
37
+
38
+ ```bash
39
+ makelovr init
40
+ ```
41
+
42
+ ### Build the game:
43
+
44
+ ```bash
45
+ makelovr build
46
+ ```
@@ -0,0 +1,23 @@
1
+ # makelövr
2
+
3
+ A distribution tool for LÖVR games.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install makelovr
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ### Initialize a project:
14
+
15
+ ```bash
16
+ makelovr init
17
+ ```
18
+
19
+ ### Build the game:
20
+
21
+ ```bash
22
+ makelovr build
23
+ ```
File without changes
@@ -0,0 +1,4 @@
1
+ from .cli import main
2
+
3
+ if __name__ == "__main__":
4
+ main()
@@ -0,0 +1,34 @@
1
+ import argparse
2
+
3
+ from .core.config import load_config
4
+ from .core.util import init_project
5
+ from .targets.linux import build_linux
6
+ from .targets.macos import build_macos
7
+ from .targets.windows import build_windows
8
+
9
+
10
+ def main():
11
+ parser = argparse.ArgumentParser(prog="makelovr")
12
+
13
+ sub = parser.add_subparsers(dest="cmd")
14
+
15
+ sub.add_parser("init")
16
+ sub.add_parser("build")
17
+
18
+ args = parser.parse_args()
19
+
20
+ if args.cmd == "init":
21
+ init_project()
22
+ return
23
+
24
+ config = load_config("makelovr.toml")
25
+
26
+ for target in config["default_targets"]:
27
+ if target == "win64":
28
+ build_windows(config)
29
+
30
+ if target == "linux":
31
+ build_linux(config)
32
+
33
+ if target == "macos":
34
+ build_macos(config)
@@ -0,0 +1,37 @@
1
+ import argparse
2
+ from core.config import load_config
3
+ from targets.windows import build_windows
4
+ from targets.linux import build_linux
5
+ from targets.macos import build_macos
6
+ from core.util import init_project
7
+
8
+
9
+ def main():
10
+ parser = argparse.ArgumentParser(prog="makelovr")
11
+
12
+ sub = parser.add_subparsers(dest="cmd")
13
+
14
+ sub.add_parser("build")
15
+ sub.add_parser("init")
16
+
17
+ args = parser.parse_args()
18
+
19
+ if args.cmd == "init":
20
+ init_project()
21
+ return
22
+
23
+ config = load_config("makelovr.toml")
24
+
25
+ for target in config["default_targets"]:
26
+ if target == "win64":
27
+ build_windows(config)
28
+
29
+ if target == "linux":
30
+ build_linux(config)
31
+
32
+ if target == "macos":
33
+ build_macos(config)
34
+
35
+
36
+ if __name__ == "__main__":
37
+ main()
@@ -0,0 +1,3 @@
1
+ function lovr.conf(t)
2
+ t.window.title = "makelövr Game"
3
+ end
@@ -0,0 +1,3 @@
1
+ function lovr.draw(pass)
2
+ pass:text("Hello from makelövr!", 0, 1.7, -3, .5)
3
+ end
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: makelovr
3
+ Version: 0.1.0
4
+ Summary: Distribution tool for LÖVR games
5
+ Home-page: https://github.com/zayfire/makelovr
6
+ Author: Zayfire Studios
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: requests
14
+ Dynamic: author
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: license-file
20
+ Dynamic: requires-dist
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ # makelövr
25
+
26
+ A distribution tool for LÖVR games.
27
+
28
+ ## Install
29
+
30
+ ```bash
31
+ pip install makelovr
32
+ ```
33
+
34
+ ## Usage
35
+
36
+ ### Initialize a project:
37
+
38
+ ```bash
39
+ makelovr init
40
+ ```
41
+
42
+ ### Build the game:
43
+
44
+ ```bash
45
+ makelovr build
46
+ ```
@@ -0,0 +1,17 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ pyproject.toml
5
+ setup.py
6
+ makelovr/__init__.py
7
+ makelovr/__main__.py
8
+ makelovr/cli.py
9
+ makelovr/makelovr.py
10
+ makelovr.egg-info/PKG-INFO
11
+ makelovr.egg-info/SOURCES.txt
12
+ makelovr.egg-info/dependency_links.txt
13
+ makelovr.egg-info/entry_points.txt
14
+ makelovr.egg-info/requires.txt
15
+ makelovr.egg-info/top_level.txt
16
+ makelovr/templates/conf.lua
17
+ makelovr/templates/main.lua
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ makelovr = makelovr.cli:main
@@ -0,0 +1 @@
1
+ requests
@@ -0,0 +1 @@
1
+ makelovr
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,23 @@
1
+ from setuptools import find_packages, setup
2
+
3
+ setup(
4
+ name="makelovr",
5
+ version="0.1.0",
6
+ author="Zayfire Studios",
7
+ description="Distribution tool for LÖVR games",
8
+ long_description=open("README.md").read(),
9
+ long_description_content_type="text/markdown",
10
+ url="https://github.com/zayfire/makelovr",
11
+ packages=find_packages(),
12
+ include_package_data=True,
13
+ install_requires=[
14
+ "requests",
15
+ ],
16
+ entry_points={"console_scripts": ["makelovr=makelovr.cli:main"]},
17
+ classifiers=[
18
+ "Programming Language :: Python :: 3",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Operating System :: OS Independent",
21
+ ],
22
+ python_requires=">=3.9",
23
+ )