devit-cli 0.1.0__tar.gz → 0.1.1__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.1}/PKG-INFO +2 -8
- {devit_cli-0.1.0 → devit_cli-0.1.1}/README.md +0 -5
- {devit_cli-0.1.0 → devit_cli-0.1.1/devit_cli.egg-info}/PKG-INFO +2 -8
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/__init__.py +1 -1
- {devit_cli-0.1.0 → devit_cli-0.1.1}/pyproject.toml +2 -3
- {devit_cli-0.1.0 → devit_cli-0.1.1}/LICENSE +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/_devkit_entry.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devit_cli.egg-info/SOURCES.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devit_cli.egg-info/dependency_links.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devit_cli.egg-info/entry_points.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devit_cli.egg-info/requires.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devit_cli.egg-info/top_level.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/commands/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/commands/archive.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/commands/clean.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/commands/env.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/commands/find.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/commands/info.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/commands/init.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/commands/run.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/main.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/aws/.gitignore +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/aws/README.md +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/aws/requirements.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/aws/scripts/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/aws/scripts/ec2.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/aws/scripts/main.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/aws/scripts/s3.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/aws/tests/test_scripts.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/.gitignore +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/README.md +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/apps/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/apps/core/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/apps/core/apps.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/apps/core/urls.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/apps/core/views.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/manage.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/requirements.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/{{module_name}}/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/{{module_name}}/settings.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/{{module_name}}/urls.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/django/{{module_name}}/wsgi.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/fastapi/.gitignore +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/fastapi/README.md +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/fastapi/app/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/fastapi/app/routers/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/fastapi/app/routers/health.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/fastapi/main.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/fastapi/requirements.txt +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/fastapi/tests/test_api.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/package/.gitignore +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/package/README.md +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/package/pyproject.toml +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/package/tests/test_core.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/package/{{module_name}}/__init__.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/package/{{module_name}}/core.py +0 -0
- {devit_cli-0.1.0 → devit_cli-0.1.1}/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.1
|
|
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
|
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devit-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
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
|
|
|
@@ -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.1"
|
|
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",
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{devit_cli-0.1.0 → devit_cli-0.1.1}/devkit_cli/templates/package/{{module_name}}/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|