rlfe 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.
- rlfe-0.1.0/PKG-INFO +56 -0
- rlfe-0.1.0/README.md +29 -0
- rlfe-0.1.0/pyproject.toml +45 -0
- rlfe-0.1.0/rlf/__init__.py +13 -0
- rlfe-0.1.0/rlf/core.py +10 -0
- rlfe-0.1.0/rlfe.egg-info/PKG-INFO +56 -0
- rlfe-0.1.0/rlfe.egg-info/SOURCES.txt +9 -0
- rlfe-0.1.0/rlfe.egg-info/dependency_links.txt +1 -0
- rlfe-0.1.0/rlfe.egg-info/requires.txt +5 -0
- rlfe-0.1.0/rlfe.egg-info/top_level.txt +1 -0
- rlfe-0.1.0/setup.cfg +4 -0
rlfe-0.1.0/PKG-INFO
ADDED
@@ -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
|
rlfe-0.1.0/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# RL Forever (rlf)
|
2
|
+
|
3
|
+
A minimal reinforcement learning package. Simple and forever!
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
```bash
|
8
|
+
pip install rlf
|
9
|
+
```
|
10
|
+
|
11
|
+
## Quick Start
|
12
|
+
|
13
|
+
```python
|
14
|
+
from rlf import hello_rl_forever, VERSION_INFO
|
15
|
+
|
16
|
+
# Say hello
|
17
|
+
print(hello_rl_forever())
|
18
|
+
print(VERSION_INFO)
|
19
|
+
```
|
20
|
+
|
21
|
+
## Features
|
22
|
+
|
23
|
+
- Minimal and lightweight
|
24
|
+
- Easy to use
|
25
|
+
- No complex dependencies
|
26
|
+
|
27
|
+
## License
|
28
|
+
|
29
|
+
MIT License
|
@@ -0,0 +1,45 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["setuptools>=45", "wheel"]
|
3
|
+
build-backend = "setuptools.build_meta"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "rlfe"
|
7
|
+
version = "0.1.0"
|
8
|
+
description = "RL Forever - A minimal reinforcement learning package"
|
9
|
+
readme = "README.md"
|
10
|
+
authors = [{name = "Mohammad", email = "mohammad@example.com"}]
|
11
|
+
license = {text = "MIT"}
|
12
|
+
requires-python = ">=3.8"
|
13
|
+
classifiers = [
|
14
|
+
"Development Status :: 3 - Alpha",
|
15
|
+
"Intended Audience :: Developers",
|
16
|
+
"License :: OSI Approved :: MIT License",
|
17
|
+
"Programming Language :: Python :: 3",
|
18
|
+
"Programming Language :: Python :: 3.8",
|
19
|
+
"Programming Language :: Python :: 3.9",
|
20
|
+
"Programming Language :: Python :: 3.10",
|
21
|
+
"Programming Language :: Python :: 3.11",
|
22
|
+
"Programming Language :: Python :: 3.12",
|
23
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
24
|
+
]
|
25
|
+
keywords = ["reinforcement learning", "machine learning", "ai"]
|
26
|
+
dependencies = []
|
27
|
+
|
28
|
+
[project.urls]
|
29
|
+
Homepage = "https://github.com/username/rlf"
|
30
|
+
Repository = "https://github.com/username/rlf"
|
31
|
+
Issues = "https://github.com/username/rlf/issues"
|
32
|
+
|
33
|
+
[project.optional-dependencies]
|
34
|
+
dev = [
|
35
|
+
"pytest>=6.0",
|
36
|
+
"black",
|
37
|
+
"flake8",
|
38
|
+
]
|
39
|
+
|
40
|
+
[tool.setuptools.packages.find]
|
41
|
+
where = ["."]
|
42
|
+
include = ["rlf*"]
|
43
|
+
|
44
|
+
[tool.setuptools.package-data]
|
45
|
+
rlf = ["*.txt", "*.md"]
|
@@ -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__"]
|
rlfe-0.1.0/rlf/core.py
ADDED
@@ -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 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
rlf
|
rlfe-0.1.0/setup.cfg
ADDED