orchestrators 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,32 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: orchestrators
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Utilities for building Python orchestration flows.
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
|
|
8
|
+
# orchestrators
|
|
9
|
+
|
|
10
|
+
Initial PyPI package scaffold for `orchestrators`, using `uv` for build and publish.
|
|
11
|
+
|
|
12
|
+
## Local workflow
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
uv build
|
|
16
|
+
uv publish
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
`uv publish` reads `UV_PUBLISH_TOKEN` automatically.
|
|
20
|
+
|
|
21
|
+
If your token is stored as `PYPI_TOKEN`, run:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
export UV_PUBLISH_TOKEN="$PYPI_TOKEN"
|
|
25
|
+
uv publish
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## TestPyPI
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
uv publish --publish-url https://test.pypi.org/legacy/
|
|
32
|
+
```
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# orchestrators
|
|
2
|
+
|
|
3
|
+
Initial PyPI package scaffold for `orchestrators`, using `uv` for build and publish.
|
|
4
|
+
|
|
5
|
+
## Local workflow
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
uv build
|
|
9
|
+
uv publish
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
`uv publish` reads `UV_PUBLISH_TOKEN` automatically.
|
|
13
|
+
|
|
14
|
+
If your token is stored as `PYPI_TOKEN`, run:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
export UV_PUBLISH_TOKEN="$PYPI_TOKEN"
|
|
18
|
+
uv publish
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## TestPyPI
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
uv publish --publish-url https://test.pypi.org/legacy/
|
|
25
|
+
```
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "orchestrators"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Utilities for building Python orchestration flows."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
dependencies = []
|
|
8
|
+
|
|
9
|
+
[build-system]
|
|
10
|
+
requires = ["uv_build>=0.9.14,<0.10.0"]
|
|
11
|
+
build-backend = "uv_build"
|