rolloutlib 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,35 @@
1
+ Metadata-Version: 2.3
2
+ Name: rolloutlib
3
+ Version: 0.1.0
4
+ Summary: Environments and post-training for language agents
5
+ Requires-Python: >=3.12
6
+ Project-URL: Homepage, https://github.com/atemaguer/rolloutlib
7
+ Project-URL: Issues, https://github.com/atemaguer/rolloutlib/issues
8
+ Project-URL: Repository, https://github.com/atemaguer/rolloutlib
9
+ Description-Content-Type: text/markdown
10
+
11
+ # rolloutlib
12
+
13
+ Environments and post-training for language agents.
14
+
15
+ ## Development
16
+
17
+ Install the project:
18
+
19
+ ```bash
20
+ uv sync
21
+ ```
22
+
23
+ ## Release
24
+
25
+ Releases are published to PyPI by GitHub Actions when a tag matching the package
26
+ version is pushed:
27
+
28
+ ```bash
29
+ git tag v0.1.0
30
+ git push origin v0.1.0
31
+ ```
32
+
33
+ The repository uses PyPI Trusted Publishing, so the `pypi` GitHub environment must be
34
+ registered as a trusted publisher for this repository's `release.yml` workflow before
35
+ the first release.
@@ -0,0 +1,25 @@
1
+ # rolloutlib
2
+
3
+ Environments and post-training for language agents.
4
+
5
+ ## Development
6
+
7
+ Install the project:
8
+
9
+ ```bash
10
+ uv sync
11
+ ```
12
+
13
+ ## Release
14
+
15
+ Releases are published to PyPI by GitHub Actions when a tag matching the package
16
+ version is pushed:
17
+
18
+ ```bash
19
+ git tag v0.1.0
20
+ git push origin v0.1.0
21
+ ```
22
+
23
+ The repository uses PyPI Trusted Publishing, so the `pypi` GitHub environment must be
24
+ registered as a trusted publisher for this repository's `release.yml` workflow before
25
+ the first release.
@@ -0,0 +1,19 @@
1
+ [project]
2
+ name = "rolloutlib"
3
+ version = "0.1.0"
4
+ description = "Environments and post-training for language agents"
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ dependencies = []
8
+
9
+ [project.urls]
10
+ Homepage = "https://github.com/atemaguer/rolloutlib"
11
+ Repository = "https://github.com/atemaguer/rolloutlib"
12
+ Issues = "https://github.com/atemaguer/rolloutlib/issues"
13
+
14
+ [build-system]
15
+ requires = ["uv_build>=0.9.5,<0.10.0"]
16
+ build-backend = "uv_build"
17
+
18
+ [tool.uv.build-backend]
19
+ module-root = ""
@@ -0,0 +1 @@
1
+ """Environments and post-training for language agents."""
@@ -0,0 +1 @@
1
+