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 +12 -0
- bbdd_utils-0.1/PKG-INFO +11 -0
- bbdd_utils-0.1/README.md +0 -0
- bbdd_utils-0.1/bbdd_utils/__init__.py +2 -0
- bbdd_utils-0.1/bbdd_utils/utils.py +2 -0
- bbdd_utils-0.1/bbdd_utils.egg-info/PKG-INFO +11 -0
- bbdd_utils-0.1/bbdd_utils.egg-info/SOURCES.txt +10 -0
- bbdd_utils-0.1/bbdd_utils.egg-info/dependency_links.txt +1 -0
- bbdd_utils-0.1/bbdd_utils.egg-info/top_level.txt +1 -0
- bbdd_utils-0.1/pyproject.toml +3 -0
- bbdd_utils-0.1/setup.cfg +4 -0
- bbdd_utils-0.1/setup.py +13 -0
bbdd_utils-0.1/LICENSE
ADDED
bbdd_utils-0.1/PKG-INFO
ADDED
@@ -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
|
bbdd_utils-0.1/README.md
ADDED
File without changes
|
@@ -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 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
bbdd_utils
|
bbdd_utils-0.1/setup.cfg
ADDED
bbdd_utils-0.1/setup.py
ADDED
@@ -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
|
+
)
|