rlstudio 1.0.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,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: rlstudio
3
+ Version: 1.0.0
4
+ Summary: RL Studio - Professional digital painting and concept art studio
5
+ Author-email: RetakJunior <retakjunior@users.noreply.github.com>
6
+ License: GPL-3.0-or-later
7
+ Project-URL: Homepage, https://github.com/RetakJunior/RL-Studio
8
+ Project-URL: Repository, https://github.com/RetakJunior/RL-Studio
9
+ Project-URL: Issues, https://github.com/RetakJunior/RL-Studio/issues
10
+ Keywords: painting,drawing,illustration,art,studio,rlstudio
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
13
+ Classifier: Operating System :: POSIX :: Linux
14
+ Classifier: Topic :: Multimedia :: Graphics :: Editors :: Raster-Based
15
+ Requires-Python: >=3.8
16
+ Description-Content-Type: text/markdown
17
+
18
+ # RL Studio
19
+
20
+ **RL Studio** is a professional, high-performance desktop painting, concept art, and digital illustration application for Linux.
21
+
22
+ - **GitHub Repository**: [https://github.com/RetakJunior/RL-Studio](https://github.com/RetakJunior/RL-Studio)
23
+ - **Native File Format**: `.rls` (RL Studio Document)
24
+ - **Platform**: Linux (Standalone AppImage)
25
+
26
+ ## Quick Start
27
+
28
+ ### Running via AppImage
29
+ Download the standalone AppImage directly from GitHub Releases:
30
+ [https://github.com/RetakJunior/RL-Studio/releases](https://github.com/RetakJunior/RL-Studio/releases)
31
+
32
+ ```bash
33
+ chmod +x RLStudio-x86_64.AppImage
34
+ ./RLStudio-x86_64.AppImage
35
+ ```
36
+
37
+ ### Python CLI
38
+ ```bash
39
+ pip install rlstudio
40
+ rlstudio
41
+ ```
@@ -0,0 +1,24 @@
1
+ # RL Studio
2
+
3
+ **RL Studio** is a professional, high-performance desktop painting, concept art, and digital illustration application for Linux.
4
+
5
+ - **GitHub Repository**: [https://github.com/RetakJunior/RL-Studio](https://github.com/RetakJunior/RL-Studio)
6
+ - **Native File Format**: `.rls` (RL Studio Document)
7
+ - **Platform**: Linux (Standalone AppImage)
8
+
9
+ ## Quick Start
10
+
11
+ ### Running via AppImage
12
+ Download the standalone AppImage directly from GitHub Releases:
13
+ [https://github.com/RetakJunior/RL-Studio/releases](https://github.com/RetakJunior/RL-Studio/releases)
14
+
15
+ ```bash
16
+ chmod +x RLStudio-x86_64.AppImage
17
+ ./RLStudio-x86_64.AppImage
18
+ ```
19
+
20
+ ### Python CLI
21
+ ```bash
22
+ pip install rlstudio
23
+ rlstudio
24
+ ```
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "rlstudio"
7
+ version = "1.0.0"
8
+ description = "RL Studio - Professional digital painting and concept art studio"
9
+ readme = "README.md"
10
+ authors = [{ name = "RetakJunior", email = "retakjunior@users.noreply.github.com" }]
11
+ license = { text = "GPL-3.0-or-later" }
12
+ classifiers = [
13
+ "Programming Language :: Python :: 3",
14
+ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
15
+ "Operating System :: POSIX :: Linux",
16
+ "Topic :: Multimedia :: Graphics :: Editors :: Raster-Based",
17
+ ]
18
+ keywords = ["painting", "drawing", "illustration", "art", "studio", "rlstudio"]
19
+ requires-python = ">=3.8"
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/RetakJunior/RL-Studio"
23
+ Repository = "https://github.com/RetakJunior/RL-Studio"
24
+ Issues = "https://github.com/RetakJunior/RL-Studio/issues"
25
+
26
+ [project.scripts]
27
+ rlstudio = "rlstudio.cli:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ """RL Studio - Professional digital painting & concept art studio."""
2
+
3
+ __version__ = "1.0.0"
@@ -0,0 +1,29 @@
1
+ import os
2
+ import sys
3
+ import shutil
4
+
5
+ APPIMAGE_CANDIDATES = [
6
+ os.path.expanduser("~/Şablonlar/RetakAlium Studio/dist/RLStudio-x86_64.AppImage"),
7
+ os.path.expanduser("~/.local/bin/RLStudio-x86_64.AppImage"),
8
+ "/usr/local/bin/RLStudio-x86_64.AppImage",
9
+ ]
10
+
11
+ def main():
12
+ """Launch RL Studio AppImage or report download instructions."""
13
+ for path in APPIMAGE_CANDIDATES:
14
+ if os.path.isfile(path) and os.access(path, os.X_OK):
15
+ os.execv(path, [path] + sys.argv[1:])
16
+
17
+ bin_path = shutil.which("rlstudio")
18
+ if bin_path and os.path.abspath(bin_path) != os.path.abspath(sys.argv[0]):
19
+ os.execv(bin_path, [bin_path] + sys.argv[1:])
20
+
21
+ print("RL Studio (v1.0.0)")
22
+ print("Professional digital painting & concept art studio.")
23
+ print("GitHub: https://github.com/RetakJunior/RL-Studio")
24
+ print("\nDownload the latest Linux standalone AppImage from:")
25
+ print(" https://github.com/RetakJunior/RL-Studio/releases\n")
26
+ sys.exit(0)
27
+
28
+ if __name__ == "__main__":
29
+ main()
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: rlstudio
3
+ Version: 1.0.0
4
+ Summary: RL Studio - Professional digital painting and concept art studio
5
+ Author-email: RetakJunior <retakjunior@users.noreply.github.com>
6
+ License: GPL-3.0-or-later
7
+ Project-URL: Homepage, https://github.com/RetakJunior/RL-Studio
8
+ Project-URL: Repository, https://github.com/RetakJunior/RL-Studio
9
+ Project-URL: Issues, https://github.com/RetakJunior/RL-Studio/issues
10
+ Keywords: painting,drawing,illustration,art,studio,rlstudio
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
13
+ Classifier: Operating System :: POSIX :: Linux
14
+ Classifier: Topic :: Multimedia :: Graphics :: Editors :: Raster-Based
15
+ Requires-Python: >=3.8
16
+ Description-Content-Type: text/markdown
17
+
18
+ # RL Studio
19
+
20
+ **RL Studio** is a professional, high-performance desktop painting, concept art, and digital illustration application for Linux.
21
+
22
+ - **GitHub Repository**: [https://github.com/RetakJunior/RL-Studio](https://github.com/RetakJunior/RL-Studio)
23
+ - **Native File Format**: `.rls` (RL Studio Document)
24
+ - **Platform**: Linux (Standalone AppImage)
25
+
26
+ ## Quick Start
27
+
28
+ ### Running via AppImage
29
+ Download the standalone AppImage directly from GitHub Releases:
30
+ [https://github.com/RetakJunior/RL-Studio/releases](https://github.com/RetakJunior/RL-Studio/releases)
31
+
32
+ ```bash
33
+ chmod +x RLStudio-x86_64.AppImage
34
+ ./RLStudio-x86_64.AppImage
35
+ ```
36
+
37
+ ### Python CLI
38
+ ```bash
39
+ pip install rlstudio
40
+ rlstudio
41
+ ```
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/rlstudio/__init__.py
4
+ src/rlstudio/cli.py
5
+ src/rlstudio.egg-info/PKG-INFO
6
+ src/rlstudio.egg-info/SOURCES.txt
7
+ src/rlstudio.egg-info/dependency_links.txt
8
+ src/rlstudio.egg-info/entry_points.txt
9
+ src/rlstudio.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ rlstudio = rlstudio.cli:main
@@ -0,0 +1 @@
1
+ rlstudio