quipus-generate 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.
Files changed (23) hide show
  1. quipus_generate-0.1.1/LICENSE +5 -0
  2. {quipus_generate-0.1.0/quipus_generate.egg-info → quipus_generate-0.1.1}/PKG-INFO +3 -2
  3. quipus_generate-0.1.1/README.md +35 -0
  4. {quipus_generate-0.1.0 → quipus_generate-0.1.1/quipus_generate.egg-info}/PKG-INFO +3 -2
  5. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/setup.py +4 -2
  6. quipus_generate-0.1.0/LICENSE +0 -0
  7. quipus_generate-0.1.0/README.md +0 -0
  8. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/__init__.py +0 -0
  9. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/cli.py +0 -0
  10. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/docker_modified.py +0 -0
  11. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/entity_generator.py +0 -0
  12. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/main_modified.py +0 -0
  13. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/microservice_generator.py +0 -0
  14. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/migration_generator.py +0 -0
  15. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/proyect_generator.py +0 -0
  16. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/readme_modified.py +0 -0
  17. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/site_generator.py +0 -0
  18. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/SOURCES.txt +0 -0
  19. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/dependency_links.txt +0 -0
  20. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/entry_points.txt +0 -0
  21. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/requires.txt +0 -0
  22. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/top_level.txt +0 -0
  23. {quipus_generate-0.1.0 → quipus_generate-0.1.1}/setup.cfg +0 -0
@@ -0,0 +1,5 @@
1
+ All rights reserved.
2
+
3
+ Copyright (c) 2025 Juan David Corrales Saldarriaga.
4
+
5
+ This software is proprietary and confidential. Unauthorized copying of this file, via any medium is strictly prohibited.
@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quipus-generate
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Generador de proyectos FastAPI con arquitectura Hexagonal.
5
- Author: Juan Corrales
5
+ Author: Juan David Corrales Saldarriaga
6
6
  Author-email: sistemas@amauttasistems.com
7
+ License: Proprietary
7
8
  License-File: LICENSE
8
9
  Requires-Dist: inflection
@@ -0,0 +1,35 @@
1
+ # 🚀 quipus-generate
2
+
3
+ **quipus-generate** es una base de proyecto en Python que implementa una arquitectura **hexagonal** (puertos y adaptadores) con **FastAPI**, **PostgreSQL**, **SQLAlchemy** y **Alembic**. Está pensado para escalar y adaptarse a microservicios, con migraciones gestionadas por servicio.
4
+
5
+ ---
6
+
7
+ ## 📦 Características
8
+
9
+ - ✅ Arquitectura hexagonal (Domain Driven Design)
10
+ - 🔧 CRUD de entidades
11
+ - 🛢️ PostgreSQL como base de datos
12
+ - 🧱 SQLAlchemy como ORM
13
+ - 📜 Alembic para control de migraciones
14
+ - 🐳 Soporte para Docker y Docker Compose
15
+ - ⚙️ Configuración por entorno
16
+
17
+ ---
18
+
19
+ # Comandos cli
20
+
21
+ ## 🐳 Crear proyecto
22
+ ```
23
+ quipus-generate init <nombre-del-proyecto>
24
+ ```
25
+
26
+ ## 🧩 Crear microservicio
27
+ ```
28
+ quipus-generate microservice <microservicio> <entidad>
29
+ ```
30
+
31
+ ## 🐍 Crear entidad
32
+ ```
33
+ quipus-generate entity <entidad>
34
+ ```
35
+
@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quipus-generate
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Generador de proyectos FastAPI con arquitectura Hexagonal.
5
- Author: Juan Corrales
5
+ Author: Juan David Corrales Saldarriaga
6
6
  Author-email: sistemas@amauttasistems.com
7
+ License: Proprietary
7
8
  License-File: LICENSE
8
9
  Requires-Dist: inflection
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="quipus-generate",
5
- version="0.1.0",
5
+ version="0.1.1",
6
6
  packages=find_packages(),
7
7
  entry_points={
8
8
  "console_scripts": [
@@ -13,6 +13,8 @@ setup(
13
13
  "inflection"
14
14
  ],
15
15
  description="Generador de proyectos FastAPI con arquitectura Hexagonal.",
16
- author="Juan Corrales",
16
+ author="Juan David Corrales Saldarriaga",
17
17
  author_email="sistemas@amauttasistems.com",
18
+ license="Proprietary",
19
+ include_package_data=True,
18
20
  )
File without changes
File without changes