componentsDjangoType 2.0.10__tar.gz → 2.0.11__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.
- {componentsdjangotype-2.0.10/componentsDjangoType.egg-info → componentsdjangotype-2.0.11}/PKG-INFO +1 -3
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/componentsDjangoType/management/commands/createApp.py +2 -2
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11/componentsDjangoType.egg-info}/PKG-INFO +1 -3
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/setup.py +1 -3
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/LICENSE +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/MANIFEST.in +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/README.md +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/componentsDjangoType/__init__.py +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/componentsDjangoType/management/__init__.py +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/componentsDjangoType/management/commands/__init__.py +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/componentsDjangoType/management/commands/createcomponent.py +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/componentsDjangoType.egg-info/SOURCES.txt +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/componentsDjangoType.egg-info/requires.txt +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/componentsDjangoType.egg-info/top_level.txt +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/services/__init__.py +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/services/authentication/__init__.py +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/services/authentication/auth.py +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/services/authenticator_configurator.py +0 -0
- {componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/setup.cfg +0 -0
{componentsdjangotype-2.0.10/componentsDjangoType.egg-info → componentsdjangotype-2.0.11}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: componentsDjangoType
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.11
|
4
4
|
Summary: Comandos para crear archivos html, css y js
|
5
5
|
Home-page: https://github.com/jose-CR/componentsDjangoType
|
6
6
|
Author: Alejandro
|
@@ -12,8 +12,6 @@ Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
13
13
|
Classifier: Operating System :: OS Independent
|
14
14
|
Classifier: Programming Language :: Python
|
15
|
-
Classifier: Programming Language :: Python :: 3
|
16
|
-
Classifier: Programming Language :: Python :: 3.7
|
17
15
|
Classifier: Framework :: Django :: 3.2
|
18
16
|
Description-Content-Type: text/markdown
|
19
17
|
License-File: LICENSE
|
@@ -31,10 +31,10 @@ class Command(BaseCommand):
|
|
31
31
|
creation.installed_app()
|
32
32
|
|
33
33
|
# Paso 3: Crear el archivo urls.py en la aplicación "Home" si no existe
|
34
|
-
creation.create_urls()
|
34
|
+
creation.create_urls(self.stdout)
|
35
35
|
|
36
36
|
# Paso 4: Crear la carpeta services y el archivo authentication.py en Home
|
37
|
-
creation.creation_auth()
|
37
|
+
creation.creation_auth(self.stdout)
|
38
38
|
|
39
39
|
home_dir = "Home"
|
40
40
|
|
{componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11/componentsDjangoType.egg-info}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: componentsDjangoType
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.11
|
4
4
|
Summary: Comandos para crear archivos html, css y js
|
5
5
|
Home-page: https://github.com/jose-CR/componentsDjangoType
|
6
6
|
Author: Alejandro
|
@@ -12,8 +12,6 @@ Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
13
13
|
Classifier: Operating System :: OS Independent
|
14
14
|
Classifier: Programming Language :: Python
|
15
|
-
Classifier: Programming Language :: Python :: 3
|
16
|
-
Classifier: Programming Language :: Python :: 3.7
|
17
15
|
Classifier: Framework :: Django :: 3.2
|
18
16
|
Description-Content-Type: text/markdown
|
19
17
|
License-File: LICENSE
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='componentsDjangoType',
|
5
|
-
version='2.0.
|
5
|
+
version='2.0.11',
|
6
6
|
packages=find_packages(),
|
7
7
|
include_package_data=True,
|
8
8
|
license='MIT',
|
@@ -19,8 +19,6 @@ setup(
|
|
19
19
|
'License :: OSI Approved :: MIT License',
|
20
20
|
'Operating System :: OS Independent',
|
21
21
|
'Programming Language :: Python',
|
22
|
-
'Programming Language :: Python :: 3',
|
23
|
-
'Programming Language :: Python :: 3.7',
|
24
22
|
'Framework :: Django :: 3.2',
|
25
23
|
],
|
26
24
|
install_requires=[
|
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/componentsDjangoType/__init__.py
RENAMED
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
|
{componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/services/authentication/__init__.py
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-2.0.10 → componentsdjangotype-2.0.11}/services/authenticator_configurator.py
RENAMED
File without changes
|
File without changes
|