rlfe 0.1.0__py3-none-any.whl

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.
rlf/__init__.py ADDED
@@ -0,0 +1,13 @@
1
+ """
2
+ RL Forever (rlf) - A minimal reinforcement learning package.
3
+
4
+ Simple and forever!
5
+ """
6
+
7
+ __version__ = "0.1.0"
8
+ __author__ = "Mohammad"
9
+ __email__ = "mohammad@example.com"
10
+
11
+ from .core import hello_rl_forever, VERSION_INFO
12
+
13
+ __all__ = ["hello_rl_forever", "VERSION_INFO", "__version__"]
rlf/core.py ADDED
@@ -0,0 +1,10 @@
1
+ """
2
+ Minimal core functionality for RL Forever.
3
+ """
4
+
5
+ def hello_rl_forever():
6
+ """Simple greeting function."""
7
+ return "Hello from RL Forever!"
8
+
9
+ # Simple constant
10
+ VERSION_INFO = "RL Forever - Simple and Forever!"
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.4
2
+ Name: rlfe
3
+ Version: 0.1.0
4
+ Summary: RL Forever - A minimal reinforcement learning package
5
+ Author-email: Mohammad <mohammad@example.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/username/rlf
8
+ Project-URL: Repository, https://github.com/username/rlf
9
+ Project-URL: Issues, https://github.com/username/rlf/issues
10
+ Keywords: reinforcement learning,machine learning,ai
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+ Provides-Extra: dev
24
+ Requires-Dist: pytest>=6.0; extra == "dev"
25
+ Requires-Dist: black; extra == "dev"
26
+ Requires-Dist: flake8; extra == "dev"
27
+
28
+ # RL Forever (rlf)
29
+
30
+ A minimal reinforcement learning package. Simple and forever!
31
+
32
+ ## Installation
33
+
34
+ ```bash
35
+ pip install rlf
36
+ ```
37
+
38
+ ## Quick Start
39
+
40
+ ```python
41
+ from rlf import hello_rl_forever, VERSION_INFO
42
+
43
+ # Say hello
44
+ print(hello_rl_forever())
45
+ print(VERSION_INFO)
46
+ ```
47
+
48
+ ## Features
49
+
50
+ - Minimal and lightweight
51
+ - Easy to use
52
+ - No complex dependencies
53
+
54
+ ## License
55
+
56
+ MIT License
@@ -0,0 +1,6 @@
1
+ rlf/__init__.py,sha256=JDESTqksQcjEcn60_OISk6OM6g8fMfqOF6speh9rxPI,284
2
+ rlf/core.py,sha256=ohlB7dYppBMeTcuH-k3BkEz6Fzzl5m6Qj2YXQxQLKm0,216
3
+ rlfe-0.1.0.dist-info/METADATA,sha256=sHVBBXxO6c2-mOL2yjsu0YIAZK_4dTl7GptMl-kDpVM,1478
4
+ rlfe-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
5
+ rlfe-0.1.0.dist-info/top_level.txt,sha256=FcLls8MWUBtn4XdPq9uVyzYqkVL31EmU_YnHeT54n-Y,4
6
+ rlfe-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ rlf