devin-cli 0.0.4__tar.gz → 0.0.5__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. {devin_cli-0.0.4 → devin_cli-0.0.5}/PKG-INFO +1 -1
  2. {devin_cli-0.0.4 → devin_cli-0.0.5}/pyproject.toml +1 -1
  3. {devin_cli-0.0.4 → devin_cli-0.0.5}/src/devin_cli/cli.py +1 -1
  4. {devin_cli-0.0.4 → devin_cli-0.0.5}/.github/workflows/pypi-publish.yml +0 -0
  5. {devin_cli-0.0.4 → devin_cli-0.0.5}/.gitignore +0 -0
  6. {devin_cli-0.0.4 → devin_cli-0.0.5}/CHANGELOG.md +0 -0
  7. {devin_cli-0.0.4 → devin_cli-0.0.5}/LICENSE +0 -0
  8. {devin_cli-0.0.4 → devin_cli-0.0.5}/README.md +0 -0
  9. {devin_cli-0.0.4 → devin_cli-0.0.5}/assets/logo.png +0 -0
  10. {devin_cli-0.0.4 → devin_cli-0.0.5}/setup.py +0 -0
  11. {devin_cli-0.0.4 → devin_cli-0.0.5}/src/devin_cli/__init__.py +0 -0
  12. {devin_cli-0.0.4 → devin_cli-0.0.5}/src/devin_cli/api/__init__.py +0 -0
  13. {devin_cli-0.0.4 → devin_cli-0.0.5}/src/devin_cli/api/attachments.py +0 -0
  14. {devin_cli-0.0.4 → devin_cli-0.0.5}/src/devin_cli/api/client.py +0 -0
  15. {devin_cli-0.0.4 → devin_cli-0.0.5}/src/devin_cli/api/knowledge.py +0 -0
  16. {devin_cli-0.0.4 → devin_cli-0.0.5}/src/devin_cli/api/playbooks.py +0 -0
  17. {devin_cli-0.0.4 → devin_cli-0.0.5}/src/devin_cli/api/secrets.py +0 -0
  18. {devin_cli-0.0.4 → devin_cli-0.0.5}/src/devin_cli/api/sessions.py +0 -0
  19. {devin_cli-0.0.4 → devin_cli-0.0.5}/src/devin_cli/config.py +0 -0
  20. {devin_cli-0.0.4 → devin_cli-0.0.5}/tests/__init__.py +0 -0
  21. {devin_cli-0.0.4 → devin_cli-0.0.5}/tests/test_api/test_attachments.py +0 -0
  22. {devin_cli-0.0.4 → devin_cli-0.0.5}/tests/test_api/test_knowledge.py +0 -0
  23. {devin_cli-0.0.4 → devin_cli-0.0.5}/tests/test_api/test_playbooks.py +0 -0
  24. {devin_cli-0.0.4 → devin_cli-0.0.5}/tests/test_api/test_secrets.py +0 -0
  25. {devin_cli-0.0.4 → devin_cli-0.0.5}/tests/test_api/test_sessions.py +0 -0
  26. {devin_cli-0.0.4 → devin_cli-0.0.5}/tests/test_cli.py +0 -0
  27. {devin_cli-0.0.4 → devin_cli-0.0.5}/tests/test_config.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devin-cli
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: Unofficial CLI for Devin AI - The first AI Software Engineer
5
5
  Project-URL: Homepage, https://github.com/revanthpobala/devin-cli
6
6
  Project-URL: Repository, https://github.com/revanthpobala/devin-cli.git
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "devin-cli"
3
- version = "0.0.4"
3
+ version = "0.0.5"
4
4
  description = "Unofficial CLI for Devin AI - The first AI Software Engineer"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -19,7 +19,7 @@ import sys
19
19
  app = typer.Typer(help="Unofficial CLI for Devin AI", no_args_is_help=True)
20
20
  console = Console()
21
21
 
22
- ASCII_LOGO = """
22
+ ASCII_LOGO = r"""
23
23
  [bold cyan]
24
24
  ____ _ _________ ____
25
25
  / __ \___ _ __(_)___ / ____/ / / _/
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes