argus-cv 1.1.0__tar.gz → 1.3.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.

Potentially problematic release.


This version of argus-cv might be problematic. Click here for more details.

Files changed (39) hide show
  1. {argus_cv-1.1.0 → argus_cv-1.3.0}/.github/workflows/ci.yml +3 -14
  2. argus_cv-1.3.0/.pre-commit-config.yaml +7 -0
  3. argus_cv-1.3.0/CHANGELOG.md +55 -0
  4. {argus_cv-1.1.0 → argus_cv-1.3.0}/PKG-INFO +1 -1
  5. {argus_cv-1.1.0 → argus_cv-1.3.0}/pyproject.toml +2 -1
  6. {argus_cv-1.1.0 → argus_cv-1.3.0}/src/argus/__init__.py +1 -1
  7. {argus_cv-1.1.0 → argus_cv-1.3.0}/src/argus/cli.py +698 -50
  8. {argus_cv-1.1.0 → argus_cv-1.3.0}/src/argus/core/__init__.py +3 -0
  9. {argus_cv-1.1.0 → argus_cv-1.3.0}/src/argus/core/base.py +1 -0
  10. {argus_cv-1.1.0 → argus_cv-1.3.0}/src/argus/core/coco.py +8 -6
  11. argus_cv-1.3.0/src/argus/core/mask.py +648 -0
  12. {argus_cv-1.1.0 → argus_cv-1.3.0}/src/argus/core/yolo.py +376 -21
  13. {argus_cv-1.1.0 → argus_cv-1.3.0}/tests/conftest.py +342 -3
  14. argus_cv-1.3.0/tests/test_classification.py +201 -0
  15. argus_cv-1.3.0/tests/test_mask.py +400 -0
  16. {argus_cv-1.1.0 → argus_cv-1.3.0}/tests/test_split_command.py +1 -3
  17. {argus_cv-1.1.0 → argus_cv-1.3.0}/tests/test_stats_command.py +1 -1
  18. {argus_cv-1.1.0 → argus_cv-1.3.0}/uv.lock +27 -1
  19. argus_cv-1.1.0/CHANGELOG.md +0 -31
  20. {argus_cv-1.1.0 → argus_cv-1.3.0}/.github/workflows/docs.yml +0 -0
  21. {argus_cv-1.1.0 → argus_cv-1.3.0}/.github/workflows/release.yml +0 -0
  22. {argus_cv-1.1.0 → argus_cv-1.3.0}/.gitignore +0 -0
  23. {argus_cv-1.1.0 → argus_cv-1.3.0}/README.md +0 -0
  24. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/assets/javascripts/extra.js +0 -0
  25. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/assets/stylesheets/extra.css +0 -0
  26. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/getting-started/installation.md +0 -0
  27. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/getting-started/quickstart.md +0 -0
  28. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/guides/datasets.md +0 -0
  29. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/guides/listing.md +0 -0
  30. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/guides/splitting.md +0 -0
  31. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/guides/stats.md +0 -0
  32. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/guides/viewer.md +0 -0
  33. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/index.md +0 -0
  34. {argus_cv-1.1.0 → argus_cv-1.3.0}/docs/reference/cli.md +0 -0
  35. {argus_cv-1.1.0 → argus_cv-1.3.0}/mkdocs.yml +0 -0
  36. {argus_cv-1.1.0 → argus_cv-1.3.0}/src/argus/__main__.py +0 -0
  37. {argus_cv-1.1.0 → argus_cv-1.3.0}/src/argus/commands/__init__.py +0 -0
  38. {argus_cv-1.1.0 → argus_cv-1.3.0}/src/argus/core/split.py +0 -0
  39. {argus_cv-1.1.0 → argus_cv-1.3.0}/tests/test_list_command.py +0 -0
@@ -11,23 +11,12 @@ on:
11
11
  jobs:
12
12
  lint:
13
13
  runs-on: ubuntu-latest
14
-
14
+
15
15
  steps:
16
16
  - name: Checkout code
17
17
  uses: actions/checkout@v4
18
-
19
- - name: Install uv
20
- uses: astral-sh/setup-uv@v4
21
- with:
22
- enable-cache: true
23
-
24
- - name: Set up Python
25
- run: uv python install 3.12
26
-
27
- - name: Run linting
28
- run: |
29
- uv sync --only-group dev
30
- uv run ruff check .
18
+
19
+ - uses: j178/prek-action@v1
31
20
 
32
21
  test:
33
22
  runs-on: ubuntu-latest
@@ -0,0 +1,7 @@
1
+ repos:
2
+ - repo: https://github.com/astral-sh/ruff-pre-commit
3
+ rev: v0.11.13
4
+ hooks:
5
+ - id: ruff
6
+ args: [--fix]
7
+ - id: ruff-format
@@ -0,0 +1,55 @@
1
+ # CHANGELOG
2
+
3
+ <!-- version list -->
4
+
5
+ ## v1.3.0 (2026-01-24)
6
+
7
+ ### Features
8
+
9
+ - Add MaskDataset class for semantic segmentation masks
10
+ ([`bbba4f2`](https://github.com/pirnerjonas/argus/commit/bbba4f2c9d476d426b6c805ad2120eca9c38c855))
11
+
12
+
13
+ ## v1.2.0 (2026-01-15)
14
+
15
+ ### Code Style
16
+
17
+ - Fix ruff linting errors
18
+ ([`b2d5ea2`](https://github.com/pirnerjonas/argus/commit/b2d5ea2c4d0715a474d4ffaa5be60d0499d200a2))
19
+
20
+ - Remove unused pytest import in test_classification.py
21
+ ([`e22175a`](https://github.com/pirnerjonas/argus/commit/e22175a7378276dd2840754e672c7d4d1ed0e067))
22
+
23
+ ### Features
24
+
25
+ - Add classification dataset support with grid viewer
26
+ ([`8089bd3`](https://github.com/pirnerjonas/argus/commit/8089bd3367ede4c288b0276ac3da4d3ef9960c4d))
27
+
28
+
29
+ ## v1.1.0 (2026-01-14)
30
+
31
+ ### Code Style
32
+
33
+ - Fix line too long in _get_display_image
34
+ ([`7a56904`](https://github.com/pirnerjonas/argus/commit/7a569049baa4e90956e089d970e192eb159a57e0))
35
+
36
+ ### Features
37
+
38
+ - Add toggle for annotation overlay in view command
39
+ ([`65fb239`](https://github.com/pirnerjonas/argus/commit/65fb23942d53947df57b6e4c12d11e5dd1aa98f3))
40
+
41
+
42
+ ## v1.0.1 (2026-01-12)
43
+
44
+ ### Bug Fixes
45
+
46
+ - Rename CLI command from argus to argus-cv
47
+ ([`325ef2a`](https://github.com/pirnerjonas/argus/commit/325ef2acfad88d179ab5b4c5e2d2621e34f9fa7e))
48
+
49
+
50
+ ## v1.0.0 (2026-01-12)
51
+
52
+
53
+ ## v0.1.0 (2026-01-12)
54
+
55
+ - Initial Release
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: argus-cv
3
- Version: 1.1.0
3
+ Version: 1.3.0
4
4
  Summary: CLI tool for working with vision AI datasets
5
5
  Requires-Python: >=3.10
6
6
  Requires-Dist: numpy>=1.24.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "argus-cv"
3
- version = "1.1.0"
3
+ version = "1.3.0"
4
4
  description = "CLI tool for working with vision AI datasets"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -19,6 +19,7 @@ dev = [
19
19
  "ruff>=0.9.9",
20
20
  "python-semantic-release>=9.0.0",
21
21
  "build>=1.0.0",
22
+ "prek>=0.2.30",
22
23
  ]
23
24
  docs = [
24
25
  "mkdocs-material>=9.5.0",
@@ -1,3 +1,3 @@
1
1
  """Argus - Vision AI dataset toolkit."""
2
2
 
3
- __version__ = "1.1.0"
3
+ __version__ = "1.3.0"