devit-cli 0.1.0__tar.gz → 0.1.2__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.
- {devit_cli-0.1.0/devit_cli.egg-info → devit_cli-0.1.2}/PKG-INFO +2 -8
- {devit_cli-0.1.0 → devit_cli-0.1.2}/README.md +0 -5
- {devit_cli-0.1.0 → devit_cli-0.1.2}/_devkit_entry.py +1 -1
- {devit_cli-0.1.0 → devit_cli-0.1.2/devit_cli.egg-info}/PKG-INFO +2 -8
- devit_cli-0.1.2/devit_cli.egg-info/entry_points.txt +2 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/__init__.py +1 -1
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/main.py +11 -11
- {devit_cli-0.1.0 → devit_cli-0.1.2}/pyproject.toml +3 -4
- devit_cli-0.1.0/devit_cli.egg-info/entry_points.txt +0 -2
- {devit_cli-0.1.0 → devit_cli-0.1.2}/LICENSE +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devit_cli.egg-info/SOURCES.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devit_cli.egg-info/dependency_links.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devit_cli.egg-info/requires.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devit_cli.egg-info/top_level.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/commands/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/commands/archive.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/commands/clean.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/commands/env.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/commands/find.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/commands/info.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/commands/init.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/commands/run.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/aws/.gitignore +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/aws/README.md +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/aws/requirements.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/aws/scripts/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/aws/scripts/ec2.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/aws/scripts/main.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/aws/scripts/s3.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/aws/tests/test_scripts.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/.gitignore +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/README.md +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/apps/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/apps/core/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/apps/core/apps.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/apps/core/urls.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/apps/core/views.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/manage.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/requirements.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/{{module_name}}/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/{{module_name}}/settings.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/{{module_name}}/urls.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/django/{{module_name}}/wsgi.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/fastapi/.gitignore +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/fastapi/README.md +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/fastapi/app/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/fastapi/app/routers/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/fastapi/app/routers/health.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/fastapi/main.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/fastapi/requirements.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/fastapi/tests/test_api.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/package/.gitignore +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/package/README.md +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/package/pyproject.toml +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/package/tests/test_core.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/package/{{module_name}}/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/package/{{module_name}}/core.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.2}/setup.cfg +0 -0
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devit-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A full-featured CLI framework for professional Python developers
|
|
5
|
-
License: MIT
|
|
5
|
+
License-Expression: MIT
|
|
6
6
|
Project-URL: Homepage, https://github.com/dipenpadhiyar/devit-cli
|
|
7
7
|
Project-URL: Issues, https://github.com/dipenpadhiyar/devit-cli/issues
|
|
8
8
|
Keywords: cli,developer-tools,scaffold,devkit
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: Environment :: Console
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
13
12
|
Classifier: Programming Language :: Python :: 3
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -46,11 +45,6 @@ Dynamic: license-file
|
|
|
46
45
|
<a href="https://pypi.org/project/devit-cli/"><img src="https://img.shields.io/pypi/l/devit-cli.svg" alt="License"/></a>
|
|
47
46
|
</p>
|
|
48
47
|
|
|
49
|
-
<p align="center">
|
|
50
|
-
<a href="https://pepy.tech/project/devit-cli"><img src="https://static.pepy.tech/badge/devit-cli" alt="Total downloads"/></a>
|
|
51
|
-
<a href="https://pepy.tech/project/devit-cli"><img src="https://static.pepy.tech/badge/devit-cli/month" alt="Monthly"/></a>
|
|
52
|
-
<a href="https://pepy.tech/project/devit-cli"><img src="https://static.pepy.tech/badge/devit-cli/week" alt="Weekly"/></a>
|
|
53
|
-
</p>
|
|
54
48
|
|
|
55
49
|
---
|
|
56
50
|
|
|
@@ -14,11 +14,6 @@
|
|
|
14
14
|
<a href="https://pypi.org/project/devit-cli/"><img src="https://img.shields.io/pypi/l/devit-cli.svg" alt="License"/></a>
|
|
15
15
|
</p>
|
|
16
16
|
|
|
17
|
-
<p align="center">
|
|
18
|
-
<a href="https://pepy.tech/project/devit-cli"><img src="https://static.pepy.tech/badge/devit-cli" alt="Total downloads"/></a>
|
|
19
|
-
<a href="https://pepy.tech/project/devit-cli"><img src="https://static.pepy.tech/badge/devit-cli/month" alt="Monthly"/></a>
|
|
20
|
-
<a href="https://pepy.tech/project/devit-cli"><img src="https://static.pepy.tech/badge/devit-cli/week" alt="Weekly"/></a>
|
|
21
|
-
</p>
|
|
22
17
|
|
|
23
18
|
---
|
|
24
19
|
|
|
@@ -37,7 +37,7 @@ def _friendly_not_installed(exc: ModuleNotFoundError) -> None: # noqa: ANN001
|
|
|
37
37
|
RST = "\033[0m" # reset
|
|
38
38
|
|
|
39
39
|
print(
|
|
40
|
-
f"\n{R}Error:{RST} devit
|
|
40
|
+
f"\n{R}Error:{RST} devit is not installed in the active Python environment.\n"
|
|
41
41
|
f"\n{B}Fix:{RST} pip install devit-cli\n"
|
|
42
42
|
f"\n{Y}Active Python:{RST} {sys.executable}\n"
|
|
43
43
|
f"{Y}Active env:{RST} "
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devit-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A full-featured CLI framework for professional Python developers
|
|
5
|
-
License: MIT
|
|
5
|
+
License-Expression: MIT
|
|
6
6
|
Project-URL: Homepage, https://github.com/dipenpadhiyar/devit-cli
|
|
7
7
|
Project-URL: Issues, https://github.com/dipenpadhiyar/devit-cli/issues
|
|
8
8
|
Keywords: cli,developer-tools,scaffold,devkit
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: Environment :: Console
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
13
12
|
Classifier: Programming Language :: Python :: 3
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -46,11 +45,6 @@ Dynamic: license-file
|
|
|
46
45
|
<a href="https://pypi.org/project/devit-cli/"><img src="https://img.shields.io/pypi/l/devit-cli.svg" alt="License"/></a>
|
|
47
46
|
</p>
|
|
48
47
|
|
|
49
|
-
<p align="center">
|
|
50
|
-
<a href="https://pepy.tech/project/devit-cli"><img src="https://static.pepy.tech/badge/devit-cli" alt="Total downloads"/></a>
|
|
51
|
-
<a href="https://pepy.tech/project/devit-cli"><img src="https://static.pepy.tech/badge/devit-cli/month" alt="Monthly"/></a>
|
|
52
|
-
<a href="https://pepy.tech/project/devit-cli"><img src="https://static.pepy.tech/badge/devit-cli/week" alt="Weekly"/></a>
|
|
53
|
-
</p>
|
|
54
48
|
|
|
55
49
|
---
|
|
56
50
|
|
|
@@ -34,37 +34,37 @@ class _DevkitGroup(click.Group):
|
|
|
34
34
|
console.print(
|
|
35
35
|
f"[red]Error:[/red] No such command [bold]'{cmd_name}'[/bold].\n"
|
|
36
36
|
f" Did you mean [bold green]{suggestions[0]}[/bold green]?\n\n"
|
|
37
|
-
f"Run [bold]
|
|
37
|
+
f"Run [bold]devit --help[/bold] to see all available commands."
|
|
38
38
|
)
|
|
39
39
|
else:
|
|
40
40
|
console.print(
|
|
41
41
|
f"[red]Error:[/red] No such command [bold]'{cmd_name}'[/bold].\n\n"
|
|
42
|
-
f"Run [bold]
|
|
42
|
+
f"Run [bold]devit --help[/bold] to see all available commands."
|
|
43
43
|
)
|
|
44
44
|
sys.exit(2)
|
|
45
45
|
|
|
46
46
|
LOGO = """
|
|
47
47
|
[bold cyan]
|
|
48
|
-
██████╗ ███████╗██╗
|
|
49
|
-
██╔══██╗██╔════╝██║
|
|
50
|
-
██║ ██║█████╗ ██║
|
|
51
|
-
██║ ██║██╔══╝ ╚██╗
|
|
52
|
-
██████╔╝███████╗ ╚████╔╝ ██║
|
|
53
|
-
╚═════╝ ╚══════╝ ╚═══╝ ╚═╝
|
|
48
|
+
██████╗ ███████╗██╗ ██╗██╗████████╗
|
|
49
|
+
██╔══██╗██╔════╝██║ ██║██║╚══██╔══╝
|
|
50
|
+
██║ ██║█████╗ ██║ ██║██║ ██║
|
|
51
|
+
██║ ██║██╔══╝ ╚██╗ ██╔╝██║ ██║
|
|
52
|
+
██████╔╝███████╗ ╚████╔╝ ██║ ██║
|
|
53
|
+
╚═════╝ ╚══════╝ ╚═══╝ ╚═╝ ╚═╝
|
|
54
54
|
[/bold cyan]
|
|
55
55
|
[dim] Professional Developer CLI Toolkit v{version}[/dim]
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
@click.group(cls=_DevkitGroup, invoke_without_command=True, context_settings={"help_option_names": ["-h", "--help"]})
|
|
60
|
-
@click.version_option(__version__, "-v", "--version", message="
|
|
60
|
+
@click.version_option(__version__, "-v", "--version", message="devit %(version)s")
|
|
61
61
|
@click.pass_context
|
|
62
62
|
def cli(ctx: click.Context) -> None:
|
|
63
63
|
"""
|
|
64
64
|
\b
|
|
65
|
-
|
|
65
|
+
devit — A full-featured CLI framework for professional developers.
|
|
66
66
|
|
|
67
|
-
Run `
|
|
67
|
+
Run `devit COMMAND --help` for details on any command.
|
|
68
68
|
"""
|
|
69
69
|
if ctx.invoked_subcommand is None:
|
|
70
70
|
console.print(LOGO.format(version=__version__))
|
|
@@ -4,17 +4,16 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "devit-cli"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "A full-featured CLI framework for professional Python developers"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
|
-
license =
|
|
11
|
+
license = "MIT"
|
|
12
12
|
keywords = ["cli", "developer-tools", "scaffold", "devkit"]
|
|
13
13
|
classifiers = [
|
|
14
14
|
"Development Status :: 3 - Alpha",
|
|
15
15
|
"Environment :: Console",
|
|
16
16
|
"Intended Audience :: Developers",
|
|
17
|
-
"License :: OSI Approved :: MIT License",
|
|
18
17
|
"Programming Language :: Python :: 3",
|
|
19
18
|
"Programming Language :: Python :: 3.10",
|
|
20
19
|
"Programming Language :: Python :: 3.11",
|
|
@@ -38,7 +37,7 @@ dev = [
|
|
|
38
37
|
]
|
|
39
38
|
|
|
40
39
|
[project.scripts]
|
|
41
|
-
|
|
40
|
+
devit = "_devkit_entry:main"
|
|
42
41
|
|
|
43
42
|
[project.urls]
|
|
44
43
|
Homepage = "https://github.com/dipenpadhiyar/devit-cli"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{devit_cli-0.1.0 → devit_cli-0.1.2}/devkit_cli/templates/package/{{module_name}}/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|