mantis-cli 22.0.2__tar.gz → 22.0.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.
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/PKG-INFO +1 -1
- mantis_cli-22.0.3/mantis/__init__.py +1 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis_cli.egg-info/PKG-INFO +1 -1
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis_cli.egg-info/requires.txt +1 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/setup.py +3 -1
- mantis_cli-22.0.2/mantis/__init__.py +0 -1
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/LICENSE +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/MANIFEST.in +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/README.md +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/__main__.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/app.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/command_line.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/__init__.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/compose.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/configuration.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/connection.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/containers.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/core.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/django.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/images.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/nginx.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/postgres.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/secrets.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/services.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/commands/volumes.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/config.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/cryptography.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/environment.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/extensions/__init__.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/extensions/django.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/extensions/nginx.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/extensions/postgres.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/helpers.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/managers.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/mantis.tpl +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis/schema.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis_cli.egg-info/SOURCES.txt +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis_cli.egg-info/dependency_links.txt +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis_cli.egg-info/entry_points.txt +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/mantis_cli.egg-info/top_level.txt +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/setup.cfg +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/tests/__init__.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/tests/test_command_line.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/tests/test_config.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/tests/test_helpers.py +0 -0
- {mantis_cli-22.0.2 → mantis_cli-22.0.3}/tests/test_managers.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = '22.0.3'
|
|
@@ -16,7 +16,9 @@ setup(
|
|
|
16
16
|
url='https://github.com/PragmaticMates/mantis-cli',
|
|
17
17
|
packages=find_packages(),
|
|
18
18
|
include_package_data=True,
|
|
19
|
-
|
|
19
|
+
# click is imported directly by command_line.py. It used to arrive transitively via typer,
|
|
20
|
+
# but typer 0.27.0 dropped that dependency, so a fresh install lost it.
|
|
21
|
+
install_requires=['cffi', 'click', 'cryptography', 'pycryptodome', 'pydantic', 'PyYAML', 'rich', 'typer'],
|
|
20
22
|
entry_points={
|
|
21
23
|
'console_scripts': ['mantis=mantis.command_line:run'],
|
|
22
24
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
VERSION = '22.0.2'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|