quipus-generate 0.1.13__tar.gz → 0.1.15__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.
Files changed (22) hide show
  1. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/PKG-INFO +1 -1
  2. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/microservice_generator.py +2 -13
  3. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/quipus_generate.egg-info/PKG-INFO +1 -1
  4. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/setup.py +1 -1
  5. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/LICENSE +0 -0
  6. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/README.md +0 -0
  7. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/__init__.py +0 -0
  8. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/cli.py +0 -0
  9. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/docker_modified.py +0 -0
  10. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/entity_generator.py +0 -0
  11. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/git_generator.py +0 -0
  12. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/main_modified.py +0 -0
  13. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/migration_generator.py +0 -0
  14. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/proyect_generator.py +0 -0
  15. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/readme_modified.py +0 -0
  16. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/amautta_project/site_generator.py +0 -0
  17. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/quipus_generate.egg-info/SOURCES.txt +0 -0
  18. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/quipus_generate.egg-info/dependency_links.txt +0 -0
  19. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/quipus_generate.egg-info/entry_points.txt +0 -0
  20. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/quipus_generate.egg-info/requires.txt +0 -0
  21. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/quipus_generate.egg-info/top_level.txt +0 -0
  22. {quipus_generate-0.1.13 → quipus_generate-0.1.15}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quipus-generate
3
- Version: 0.1.13
3
+ Version: 0.1.15
4
4
  Summary: Generador de proyectos FastAPI con arquitectura Hexagonal.
5
5
  Author: Juan David Corrales Saldarriaga
6
6
  Author-email: sistemas@amauttasistems.com
@@ -2,19 +2,8 @@ import sys
2
2
  import os
3
3
 
4
4
  def create(name):
5
-
6
- # ver la ruta con pwd
7
- print("Ubicación del script:", os.path.dirname(__file__))
8
-
9
- print("Ubicación absoluta:", os.path.abspath(__file__))
10
-
11
- print("Ubicación proyecto:", os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
12
-
13
- #ubicarme el script en la carpeta del proyecto
14
- os.chdir(os.path.dirname(os.path.abspath(__file__)))
15
-
16
- # si no esta ubicado en la carpeta del proyecto que debe contemerr un docker-compose.yml para toda la ejecucion
17
- if not os.path.isfile("./docker-compose.yml"):
5
+ # si no esta ubicado en la carpeta del proyecto que debe contener un docker-compose.yml para toda la ejecucion
6
+ if not os.path.isfile(f"{os.getcwd()}/docker-compose.yml"):
18
7
  print("ℹ️ No se encuentra en la carpeta del proyecto.")
19
8
  sys.exit()
20
9
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quipus-generate
3
- Version: 0.1.13
3
+ Version: 0.1.15
4
4
  Summary: Generador de proyectos FastAPI con arquitectura Hexagonal.
5
5
  Author: Juan David Corrales Saldarriaga
6
6
  Author-email: sistemas@amauttasistems.com
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setup(
7
7
  name="quipus-generate",
8
- version="0.1.13",
8
+ version="0.1.15",
9
9
  packages=find_packages(),
10
10
  entry_points={
11
11
  "console_scripts": [