dprojectstools 0.0.3__tar.gz → 0.0.4__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.
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/PKG-INFO +4 -4
- dprojectstools-0.0.4/README.md +2 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/pyproject.toml +2 -2
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools/commands/commands.py +4 -5
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools.egg-info/PKG-INFO +4 -4
- dprojectstools-0.0.3/README.md +0 -2
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/LICENSE +0 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/setup.cfg +0 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools/__init__.py +0 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools/commands/__init__.py +0 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools/crypto/__init__.py +0 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools/crypto/aes.py +0 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools/secrets/__init__.py +0 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools/secrets/secrets.py +0 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools.egg-info/SOURCES.txt +0 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools.egg-info/dependency_links.txt +0 -0
- {dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: dprojectstools
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary: A
|
|
3
|
+
Version: 0.0.4
|
|
4
|
+
Summary: A set of development tools
|
|
5
5
|
Author-email: Marc Delos <marcdp@dprojects.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/marcdp/dprojectstools
|
|
7
7
|
Project-URL: Issues, https://github.com/marcdp/dprojectstools/issues
|
|
@@ -12,5 +12,5 @@ Requires-Python: >=3.8
|
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
|
|
15
|
-
#
|
|
16
|
-
A
|
|
15
|
+
# dprojectstools
|
|
16
|
+
A set of development tools
|
|
@@ -10,11 +10,11 @@ where = ["src"]
|
|
|
10
10
|
|
|
11
11
|
[project]
|
|
12
12
|
name = "dprojectstools"
|
|
13
|
-
version = "0.0.
|
|
13
|
+
version = "0.0.4"
|
|
14
14
|
authors = [
|
|
15
15
|
{ name="Marc Delos", email="marcdp@dprojects.com" },
|
|
16
16
|
]
|
|
17
|
-
description = "A
|
|
17
|
+
description = "A set of development tools"
|
|
18
18
|
readme = "README.md"
|
|
19
19
|
requires-python = ">=3.8"
|
|
20
20
|
classifiers = [
|
|
@@ -134,9 +134,6 @@ class CommandsManager:
|
|
|
134
134
|
|
|
135
135
|
self._commands.sort(key=lambda x: x.index)
|
|
136
136
|
|
|
137
|
-
#for command in self._commands:
|
|
138
|
-
# print(command.name, command.index)
|
|
139
|
-
|
|
140
137
|
def showMenu(self):
|
|
141
138
|
# sort
|
|
142
139
|
self.sort()
|
|
@@ -148,10 +145,12 @@ class CommandsManager:
|
|
|
148
145
|
indent = self._indent * " "
|
|
149
146
|
while True:
|
|
150
147
|
# show menu
|
|
151
|
-
print(indent + "
|
|
152
|
-
print(indent + "
|
|
148
|
+
print(indent + "Select an option:")
|
|
149
|
+
print(indent + "=================")
|
|
153
150
|
command_ant = None
|
|
154
151
|
for command in self._commands:
|
|
152
|
+
if command_ant == None and command.index > 1:
|
|
153
|
+
print(indent + f" : ")
|
|
155
154
|
if command_ant != None and command_ant.name[0] != command.name[0]:
|
|
156
155
|
print(indent + f" : ")
|
|
157
156
|
print(indent + f"{command.index:2} : {command.title}")
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: dprojectstools
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary: A
|
|
3
|
+
Version: 0.0.4
|
|
4
|
+
Summary: A set of development tools
|
|
5
5
|
Author-email: Marc Delos <marcdp@dprojects.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/marcdp/dprojectstools
|
|
7
7
|
Project-URL: Issues, https://github.com/marcdp/dprojectstools/issues
|
|
@@ -12,5 +12,5 @@ Requires-Python: >=3.8
|
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
|
|
15
|
-
#
|
|
16
|
-
A
|
|
15
|
+
# dprojectstools
|
|
16
|
+
A set of development tools
|
dprojectstools-0.0.3/README.md
DELETED
|
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
|
{dprojectstools-0.0.3 → dprojectstools-0.0.4}/src/dprojectstools.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|