bbdd-utils 0.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.
bbdd_utils-0.1/LICENSE ADDED
@@ -0,0 +1,12 @@
1
+
2
+
3
+ **LICENSE**
4
+ Puedes usar MIT, muy permisiva. Copia esto:
5
+ MIT License
6
+
7
+ Copyright (c) 2025 Luis Domingo
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy...
10
+
11
+ **setup.py**
12
+
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: bbdd_utils
3
+ Version: 0.1
4
+ Summary: libreria para la gestion de bases de datos
5
+ Author: Luis_J_Domingo
6
+ Description-Content-Type: text/markdown
7
+ License-File: LICENSE
8
+ Dynamic: author
9
+ Dynamic: description-content-type
10
+ Dynamic: license-file
11
+ Dynamic: summary
File without changes
@@ -0,0 +1,2 @@
1
+ # Esto hace que puedas hacer: from milibreria import saludar
2
+ from .utils import saludar
@@ -0,0 +1,2 @@
1
+ def saludar(nombre):
2
+ return f"Hola, {nombre}! Esta es tu librería personalizada."
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: bbdd_utils
3
+ Version: 0.1
4
+ Summary: libreria para la gestion de bases de datos
5
+ Author: Luis_J_Domingo
6
+ Description-Content-Type: text/markdown
7
+ License-File: LICENSE
8
+ Dynamic: author
9
+ Dynamic: description-content-type
10
+ Dynamic: license-file
11
+ Dynamic: summary
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ bbdd_utils/__init__.py
6
+ bbdd_utils/utils.py
7
+ bbdd_utils.egg-info/PKG-INFO
8
+ bbdd_utils.egg-info/SOURCES.txt
9
+ bbdd_utils.egg-info/dependency_links.txt
10
+ bbdd_utils.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ bbdd_utils
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,13 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='bbdd_utils',
5
+ version='0.1',
6
+ packages=find_packages(),
7
+ install_requires=[],
8
+ author='Luis_J_Domingo',
9
+ description='libreria para la gestion de bases de datos',
10
+ # long_description=open('README.md').read(),
11
+ long_description_content_type='text/markdown',
12
+ # url='https://github.com/tuusuario/milibreria', # si usas GitHub
13
+ )