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.
Files changed (27) hide show
  1. {flybase_cli-0.1.2/src/flybase_cli.egg-info → flybase_cli-0.1.3}/PKG-INFO +44 -1
  2. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/README.md +43 -0
  3. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/pyproject.toml +1 -1
  4. flybase_cli-0.1.3/src/flybase_cli/version.py +1 -0
  5. {flybase_cli-0.1.2 → flybase_cli-0.1.3/src/flybase_cli.egg-info}/PKG-INFO +44 -1
  6. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/tests/test_core.py +1 -1
  7. flybase_cli-0.1.2/src/flybase_cli/version.py +0 -1
  8. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/LICENSE +0 -0
  9. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/setup.cfg +0 -0
  10. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/__init__.py +0 -0
  11. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/__main__.py +0 -0
  12. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/cli.py +0 -0
  13. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/config.py +0 -0
  14. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/core.py +0 -0
  15. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/loaders.py +0 -0
  16. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/postgres.py +0 -0
  17. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/querying.py +0 -0
  18. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/schema.py +0 -0
  19. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/semantics.py +0 -0
  20. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli/syncing.py +0 -0
  21. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli.egg-info/SOURCES.txt +0 -0
  22. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli.egg-info/dependency_links.txt +0 -0
  23. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli.egg-info/entry_points.txt +0 -0
  24. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/src/flybase_cli.egg-info/top_level.txt +0 -0
  25. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/tests/test_postgres.py +0 -0
  26. {flybase_cli-0.1.2 → flybase_cli-0.1.3}/tests/test_querying.py +0 -0
  27. {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.2
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "flybase-cli"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = "FlyBase sync/query helper for agents."
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -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.2
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
@@ -677,7 +677,7 @@ class FlybaseCoreTests(unittest.TestCase):
677
677
  env=env,
678
678
  text=True,
679
679
  )
680
- self.assertIn("0.1.2", result.stdout)
680
+ self.assertIn("0.1.3", result.stdout)
681
681
 
682
682
 
683
683
  if __name__ == "__main__":
@@ -1 +0,0 @@
1
- __version__ = "0.1.2"
File without changes
File without changes