agentstr 0.1.8__tar.gz → 0.1.9__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1 @@
1
+ include src/agentstr/examples/basic_cli/.env.example
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: agentstr
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Nostr extension for Phidata AI agents
5
5
  Project-URL: Homepage, https://github.com/synvya/agentstr
6
6
  Project-URL: Documentation, https://github.com/synvya/agentstr#readme
@@ -77,9 +77,9 @@ pip install agentstr
77
77
 
78
78
  ## Examples
79
79
 
80
- See our [examples directory](examples/) for complete working implementations:
80
+ See our [examples directory](https://github.com/Synvya/agentstr/tree/main/examples/) for complete working implementations:
81
81
 
82
- - [Basic CLI Agent](examples/basic_cli/main.py) - A complete example showing:
82
+ - [Basic CLI Agent](https://github.com/Synvya/agentstr/tree/main/examples/basic_cli/main.py) - A complete example showing:
83
83
  - Setting up merchant profiles
84
84
  - Creating stalls with shipping methods
85
85
  - Defining products with shipping costs
@@ -89,7 +89,7 @@ See our [examples directory](examples/) for complete working implementations:
89
89
 
90
90
  ## Documentation
91
91
 
92
- For more detailed documentation and examples, see [Docs](docs/docs.md)
92
+ For more detailed documentation and examples, see [Docs](https://github.com/Synvya/agentstr/tree/main/docs/docs.md)
93
93
 
94
94
  ## Development
95
95
 
@@ -55,9 +55,9 @@ pip install agentstr
55
55
 
56
56
  ## Examples
57
57
 
58
- See our [examples directory](examples/) for complete working implementations:
58
+ See our [examples directory](https://github.com/Synvya/agentstr/tree/main/examples/) for complete working implementations:
59
59
 
60
- - [Basic CLI Agent](examples/basic_cli/main.py) - A complete example showing:
60
+ - [Basic CLI Agent](https://github.com/Synvya/agentstr/tree/main/examples/basic_cli/main.py) - A complete example showing:
61
61
  - Setting up merchant profiles
62
62
  - Creating stalls with shipping methods
63
63
  - Defining products with shipping costs
@@ -67,7 +67,7 @@ See our [examples directory](examples/) for complete working implementations:
67
67
 
68
68
  ## Documentation
69
69
 
70
- For more detailed documentation and examples, see [Docs](docs/docs.md)
70
+ For more detailed documentation and examples, see [Docs](https://github.com/Synvya/agentstr/tree/main/docs/docs.md)
71
71
 
72
72
  ## Development
73
73
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agentstr"
7
- version = "0.1.8"
7
+ version = "0.1.9"
8
8
  description = "Nostr extension for Phidata AI agents"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9, <3.13"
@@ -30,9 +30,9 @@ Homepage = "https://github.com/synvya/agentstr"
30
30
  Documentation = "https://github.com/synvya/agentstr#readme"
31
31
  BugTracker = "https://github.com/synvya/agentstr/issues"
32
32
 
33
- [tool.setuptools.packages.find]
34
- where = ["src"]
35
- include = ["agentstr*"]
33
+ [tool.setuptools]
34
+ package-dir = {"" = "src"}
35
+ packages = ["agentstr"]
36
36
 
37
37
  [tool.black]
38
38
  line-length = 88
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: agentstr
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Nostr extension for Phidata AI agents
5
5
  Project-URL: Homepage, https://github.com/synvya/agentstr
6
6
  Project-URL: Documentation, https://github.com/synvya/agentstr#readme
@@ -77,9 +77,9 @@ pip install agentstr
77
77
 
78
78
  ## Examples
79
79
 
80
- See our [examples directory](examples/) for complete working implementations:
80
+ See our [examples directory](https://github.com/Synvya/agentstr/tree/main/examples/) for complete working implementations:
81
81
 
82
- - [Basic CLI Agent](examples/basic_cli/main.py) - A complete example showing:
82
+ - [Basic CLI Agent](https://github.com/Synvya/agentstr/tree/main/examples/basic_cli/main.py) - A complete example showing:
83
83
  - Setting up merchant profiles
84
84
  - Creating stalls with shipping methods
85
85
  - Defining products with shipping costs
@@ -89,7 +89,7 @@ See our [examples directory](examples/) for complete working implementations:
89
89
 
90
90
  ## Documentation
91
91
 
92
- For more detailed documentation and examples, see [Docs](docs/docs.md)
92
+ For more detailed documentation and examples, see [Docs](https://github.com/Synvya/agentstr/tree/main/docs/docs.md)
93
93
 
94
94
  ## Development
95
95
 
@@ -1,4 +1,5 @@
1
1
  LICENSE
2
+ MANIFEST.in
2
3
  README.md
3
4
  pyproject.toml
4
5
  src/agentstr/__init__.py
File without changes
File without changes
File without changes
File without changes