componentsDjangoType 2.0.13__tar.gz → 2.0.14__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (20) hide show
  1. {componentsdjangotype-2.0.13/componentsDjangoType.egg-info → componentsdjangotype-2.0.14}/PKG-INFO +1 -1
  2. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14/componentsDjangoType.egg-info}/PKG-INFO +1 -1
  3. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/services/authenticator_configurator.py +1 -1
  4. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/setup.py +1 -1
  5. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/LICENSE +0 -0
  6. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/MANIFEST.in +0 -0
  7. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/README.md +0 -0
  8. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/componentsDjangoType/__init__.py +0 -0
  9. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/componentsDjangoType/management/__init__.py +0 -0
  10. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/componentsDjangoType/management/commands/__init__.py +0 -0
  11. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/componentsDjangoType/management/commands/createApp.py +0 -0
  12. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/componentsDjangoType/management/commands/createcomponent.py +0 -0
  13. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/componentsDjangoType.egg-info/SOURCES.txt +0 -0
  14. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
  15. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/componentsDjangoType.egg-info/requires.txt +0 -0
  16. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/componentsDjangoType.egg-info/top_level.txt +0 -0
  17. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/services/__init__.py +0 -0
  18. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/services/authentication/__init__.py +0 -0
  19. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/services/authentication/auth.py +0 -0
  20. {componentsdjangotype-2.0.13 → componentsdjangotype-2.0.14}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: componentsDjangoType
3
- Version: 2.0.13
3
+ Version: 2.0.14
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: componentsDjangoType
3
- Version: 2.0.13
3
+ Version: 2.0.14
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
@@ -122,7 +122,7 @@ urlpatterns = [
122
122
 
123
123
  authentication_path = os.path.join(authentication_dir, 'authentication.py')
124
124
 
125
- auth_source_path = os.path.abspath('authentication/auth.py')
125
+ auth_source_path = os.path.abspath('services/authentication/auth.py')
126
126
 
127
127
  if not os.path.exists(auth_source_path):
128
128
  stdout.write(f"El archivo fuente '{auth_source_path}' no existe. Verifica la instalación del paquete.")
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='componentsDjangoType',
5
- version='2.0.13',
5
+ version='2.0.14',
6
6
  packages=find_packages(),
7
7
  include_package_data=True,
8
8
  license='MIT',