agenticstackfile 0.1.1__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. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/PKG-INFO +2 -1
  2. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/config.py +0 -1
  3. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstackfile.egg-info/PKG-INFO +2 -1
  4. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstackfile.egg-info/requires.txt +1 -0
  5. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/pyproject.toml +4 -1
  6. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/README.md +0 -0
  7. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/__init__.py +0 -0
  8. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/analyzer/__init__.py +0 -0
  9. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/analyzer/base.py +0 -0
  10. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/analyzer/python.py +0 -0
  11. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/cli.py +0 -0
  12. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/core.py +0 -0
  13. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/errors.py +0 -0
  14. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/formatter/__init__.py +0 -0
  15. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/formatter/static.py +0 -0
  16. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/prompt.py +0 -0
  17. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/providers/__init__.py +0 -0
  18. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/providers/anthropic.py +0 -0
  19. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/providers/base.py +0 -0
  20. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/providers/factory.py +0 -0
  21. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/providers/openai.py +0 -0
  22. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstack/writer.py +0 -0
  23. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstackfile.egg-info/SOURCES.txt +0 -0
  24. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstackfile.egg-info/dependency_links.txt +0 -0
  25. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstackfile.egg-info/entry_points.txt +0 -0
  26. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/agenticstackfile.egg-info/top_level.txt +0 -0
  27. {agenticstackfile-0.1.1 → agenticstackfile-0.1.3}/setup.cfg +0 -0
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agenticstackfile
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Instant codebase map for AI agents — understand any project before making changes
5
5
  Author-email: Rajat Handa <handarajat111@gmail.com>
6
6
  License-Expression: MIT
7
7
  Requires-Python: >=3.9
8
8
  Description-Content-Type: text/markdown
9
+ Requires-Dist: click>=8.0.0
9
10
  Provides-Extra: anthropic
10
11
  Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
11
12
  Provides-Extra: openai
@@ -77,7 +77,6 @@ def create_default_ignore_file() -> None:
77
77
  env
78
78
 
79
79
  # Test directories
80
- test_project
81
80
  tests
82
81
 
83
82
  # Build artifacts
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agenticstackfile
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Instant codebase map for AI agents — understand any project before making changes
5
5
  Author-email: Rajat Handa <handarajat111@gmail.com>
6
6
  License-Expression: MIT
7
7
  Requires-Python: >=3.9
8
8
  Description-Content-Type: text/markdown
9
+ Requires-Dist: click>=8.0.0
9
10
  Provides-Extra: anthropic
10
11
  Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
11
12
  Provides-Extra: openai
@@ -1,3 +1,4 @@
1
+ click>=8.0.0
1
2
 
2
3
  [all]
3
4
  anthropic>=0.20.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agenticstackfile"
7
- version = "0.1.1"
7
+ version = "0.1.3"
8
8
  description = "Instant codebase map for AI agents — understand any project before making changes"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -12,6 +12,9 @@ license = "MIT"
12
12
  authors = [
13
13
  {name = "Rajat Handa", email = "handarajat111@gmail.com"}
14
14
  ]
15
+ dependencies = [
16
+ "click>=8.0.0",
17
+ ]
15
18
 
16
19
  [project.optional-dependencies]
17
20
  anthropic = ["anthropic>=0.20.0"]