flybase-cli 0.1.2__tar.gz → 0.1.3__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.
- {flybase_cli-0.1.2/src/flybase_cli.egg-info → flybase_cli-0.1.3}/PKG-INFO +44 -1
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/README.md +43 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/pyproject.toml +1 -1
- flybase_cli-0.1.3/src/flybase_cli/version.py +1 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3/src/flybase_cli.egg-info}/PKG-INFO +44 -1
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/tests/test_core.py +1 -1
- flybase_cli-0.1.2/src/flybase_cli/version.py +0 -1
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/LICENSE +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/setup.cfg +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/__init__.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/__main__.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/cli.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/config.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/core.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/loaders.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/postgres.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/querying.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/schema.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/semantics.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/syncing.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli.egg-info/SOURCES.txt +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli.egg-info/dependency_links.txt +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli.egg-info/entry_points.txt +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli.egg-info/top_level.txt +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/tests/test_postgres.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/tests/test_querying.py +0 -0
- {flybase_cli-0.1.2 → flybase_cli-0.1.3}/tests/test_syncing.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flybase-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: FlyBase sync/query helper for agents.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Requires-Python: >=3.11
|
|
@@ -10,6 +10,9 @@ Dynamic: license-file
|
|
|
10
10
|
|
|
11
11
|
# FlyBase local sync/query
|
|
12
12
|
|
|
13
|
+
> This package has been renamed. Install `flybase` now:
|
|
14
|
+
> `pipx install flybase`
|
|
15
|
+
|
|
13
16
|
Use FlyBase bulk files for agent workloads. Live API: helper only.
|
|
14
17
|
|
|
15
18
|
## Why
|
|
@@ -34,6 +37,46 @@ Use FlyBase bulk files for agent workloads. Live API: helper only.
|
|
|
34
37
|
- `flybase_cli.py`: thin repo-root shim
|
|
35
38
|
- `pyproject.toml`: package metadata / console entrypoint
|
|
36
39
|
|
|
40
|
+
## Install
|
|
41
|
+
|
|
42
|
+
PyPI with `pipx`:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
pipx install flybase-cli
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
PyPI with plain `pip`:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
python3 -m pip install flybase-cli
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Homebrew:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
brew tap gumadeiras/tap
|
|
58
|
+
brew install flybase-cli
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
From source:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
python3 -m pip install -e .
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Release
|
|
68
|
+
|
|
69
|
+
Current release: `v0.1.2`.
|
|
70
|
+
|
|
71
|
+
Tag pushes like `vX.Y.Z` run the release workflow: build artifacts, create a
|
|
72
|
+
GitHub release, publish to PyPI, and update `gumadeiras/homebrew-tap`.
|
|
73
|
+
|
|
74
|
+
Release prerequisites:
|
|
75
|
+
|
|
76
|
+
- PyPI trusted publishing configured for this repo.
|
|
77
|
+
- `HOMEBREW_TAP_TOKEN` repository secret can write to
|
|
78
|
+
`gumadeiras/homebrew-tap`.
|
|
79
|
+
|
|
37
80
|
## CLI
|
|
38
81
|
|
|
39
82
|
```bash
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# FlyBase local sync/query
|
|
2
2
|
|
|
3
|
+
> This package has been renamed. Install `flybase` now:
|
|
4
|
+
> `pipx install flybase`
|
|
5
|
+
|
|
3
6
|
Use FlyBase bulk files for agent workloads. Live API: helper only.
|
|
4
7
|
|
|
5
8
|
## Why
|
|
@@ -24,6 +27,46 @@ Use FlyBase bulk files for agent workloads. Live API: helper only.
|
|
|
24
27
|
- `flybase_cli.py`: thin repo-root shim
|
|
25
28
|
- `pyproject.toml`: package metadata / console entrypoint
|
|
26
29
|
|
|
30
|
+
## Install
|
|
31
|
+
|
|
32
|
+
PyPI with `pipx`:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pipx install flybase-cli
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
PyPI with plain `pip`:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
python3 -m pip install flybase-cli
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Homebrew:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
brew tap gumadeiras/tap
|
|
48
|
+
brew install flybase-cli
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
From source:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
python3 -m pip install -e .
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Release
|
|
58
|
+
|
|
59
|
+
Current release: `v0.1.2`.
|
|
60
|
+
|
|
61
|
+
Tag pushes like `vX.Y.Z` run the release workflow: build artifacts, create a
|
|
62
|
+
GitHub release, publish to PyPI, and update `gumadeiras/homebrew-tap`.
|
|
63
|
+
|
|
64
|
+
Release prerequisites:
|
|
65
|
+
|
|
66
|
+
- PyPI trusted publishing configured for this repo.
|
|
67
|
+
- `HOMEBREW_TAP_TOKEN` repository secret can write to
|
|
68
|
+
`gumadeiras/homebrew-tap`.
|
|
69
|
+
|
|
27
70
|
## CLI
|
|
28
71
|
|
|
29
72
|
```bash
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.3"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flybase-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: FlyBase sync/query helper for agents.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Requires-Python: >=3.11
|
|
@@ -10,6 +10,9 @@ Dynamic: license-file
|
|
|
10
10
|
|
|
11
11
|
# FlyBase local sync/query
|
|
12
12
|
|
|
13
|
+
> This package has been renamed. Install `flybase` now:
|
|
14
|
+
> `pipx install flybase`
|
|
15
|
+
|
|
13
16
|
Use FlyBase bulk files for agent workloads. Live API: helper only.
|
|
14
17
|
|
|
15
18
|
## Why
|
|
@@ -34,6 +37,46 @@ Use FlyBase bulk files for agent workloads. Live API: helper only.
|
|
|
34
37
|
- `flybase_cli.py`: thin repo-root shim
|
|
35
38
|
- `pyproject.toml`: package metadata / console entrypoint
|
|
36
39
|
|
|
40
|
+
## Install
|
|
41
|
+
|
|
42
|
+
PyPI with `pipx`:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
pipx install flybase-cli
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
PyPI with plain `pip`:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
python3 -m pip install flybase-cli
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Homebrew:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
brew tap gumadeiras/tap
|
|
58
|
+
brew install flybase-cli
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
From source:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
python3 -m pip install -e .
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Release
|
|
68
|
+
|
|
69
|
+
Current release: `v0.1.2`.
|
|
70
|
+
|
|
71
|
+
Tag pushes like `vX.Y.Z` run the release workflow: build artifacts, create a
|
|
72
|
+
GitHub release, publish to PyPI, and update `gumadeiras/homebrew-tap`.
|
|
73
|
+
|
|
74
|
+
Release prerequisites:
|
|
75
|
+
|
|
76
|
+
- PyPI trusted publishing configured for this repo.
|
|
77
|
+
- `HOMEBREW_TAP_TOKEN` repository secret can write to
|
|
78
|
+
`gumadeiras/homebrew-tap`.
|
|
79
|
+
|
|
37
80
|
## CLI
|
|
38
81
|
|
|
39
82
|
```bash
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.2"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|