junban 1.0.0__tar.gz → 1.0.1__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.
- junban-1.0.1/PKG-INFO +10 -0
- {junban-1.0.0 → junban-1.0.1}/README.md +3 -2
- junban-1.0.1/junban.egg-info/PKG-INFO +10 -0
- junban-1.0.1/pyproject.toml +13 -0
- junban-1.0.0/PKG-INFO +0 -7
- junban-1.0.0/junban.egg-info/PKG-INFO +0 -7
- junban-1.0.0/pyproject.toml +0 -6
- {junban-1.0.0 → junban-1.0.1}/LICENSE +0 -0
- {junban-1.0.0 → junban-1.0.1}/junban/__init__.py +0 -0
- {junban-1.0.0 → junban-1.0.1}/junban/pipeline.py +0 -0
- {junban-1.0.0 → junban-1.0.1}/junban/pipeline_context.py +0 -0
- {junban-1.0.0 → junban-1.0.1}/junban/pipeline_step.py +0 -0
- {junban-1.0.0 → junban-1.0.1}/junban.egg-info/SOURCES.txt +0 -0
- {junban-1.0.0 → junban-1.0.1}/junban.egg-info/dependency_links.txt +0 -0
- {junban-1.0.0 → junban-1.0.1}/junban.egg-info/top_level.txt +0 -0
- {junban-1.0.0 → junban-1.0.1}/setup.cfg +0 -0
junban-1.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: junban
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Junban – Simple Sequential Python Workflows
|
|
5
|
+
Author-email: Sebastian Franz <sebastian.franz@tum.de>
|
|
6
|
+
Project-URL: Issues, https://github.com/biocentral/junban/issues
|
|
7
|
+
Project-URL: Repository, https://github.com/biocentral/junban
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Dynamic: license-file
|
|
@@ -4,9 +4,10 @@ Junban (english: order) is a lightweight library for defining and executing sequ
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
Junban is available via pypi:
|
|
8
|
-
```python
|
|
7
|
+
Junban is available via [pypi](https://pypi.org/project/junban/):
|
|
9
8
|
|
|
9
|
+
```shell
|
|
10
|
+
pip install junban
|
|
10
11
|
```
|
|
11
12
|
|
|
12
13
|
## Quick Example
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: junban
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Junban – Simple Sequential Python Workflows
|
|
5
|
+
Author-email: Sebastian Franz <sebastian.franz@tum.de>
|
|
6
|
+
Project-URL: Issues, https://github.com/biocentral/junban/issues
|
|
7
|
+
Project-URL: Repository, https://github.com/biocentral/junban
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Dynamic: license-file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "junban"
|
|
3
|
+
version = "1.0.1"
|
|
4
|
+
description = "Junban – Simple Sequential Python Workflows"
|
|
5
|
+
authors = [
|
|
6
|
+
{name = "Sebastian Franz", email = "sebastian.franz@tum.de"},
|
|
7
|
+
]
|
|
8
|
+
requires-python = ">=3.11"
|
|
9
|
+
dependencies = []
|
|
10
|
+
|
|
11
|
+
[project.urls]
|
|
12
|
+
Issues = "https://github.com/biocentral/junban/issues"
|
|
13
|
+
Repository = "https://github.com/biocentral/junban"
|
junban-1.0.0/PKG-INFO
DELETED
junban-1.0.0/pyproject.toml
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|