aplic-ventas 0.1.0__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.
- aplic_ventas-0.1.0/PKG-INFO +31 -0
- aplic_ventas-0.1.0/aplic_ventas.egg-info/PKG-INFO +31 -0
- aplic_ventas-0.1.0/aplic_ventas.egg-info/SOURCES.txt +5 -0
- aplic_ventas-0.1.0/aplic_ventas.egg-info/dependency_links.txt +1 -0
- aplic_ventas-0.1.0/aplic_ventas.egg-info/top_level.txt +1 -0
- aplic_ventas-0.1.0/setup.cfg +4 -0
- aplic_ventas-0.1.0/setup.py +22 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aplic_ventas
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Paquete para gestionar ventas, precios, impuestos y descuentos.
|
|
5
|
+
Home-page: https://github.com/tu_usuario/gestor_ventas
|
|
6
|
+
Author: Armando Ruiz Rebollar
|
|
7
|
+
Author-email: elprofesor.armando@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: home-page
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
# APLICACION DE VENTAS
|
|
21
|
+
|
|
22
|
+
Este paquete proporciona funcionalidades para gestionar
|
|
23
|
+
ventas, incluyendo cálculos de precios, impuestos y descuentos.
|
|
24
|
+
|
|
25
|
+
## Instalacion
|
|
26
|
+
|
|
27
|
+
Puedes instalar el paquetes usando:
|
|
28
|
+
|
|
29
|
+
``` bash
|
|
30
|
+
pip install .
|
|
31
|
+
"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aplic_ventas
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Paquete para gestionar ventas, precios, impuestos y descuentos.
|
|
5
|
+
Home-page: https://github.com/tu_usuario/gestor_ventas
|
|
6
|
+
Author: Armando Ruiz Rebollar
|
|
7
|
+
Author-email: elprofesor.armando@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: home-page
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
# APLICACION DE VENTAS
|
|
21
|
+
|
|
22
|
+
Este paquete proporciona funcionalidades para gestionar
|
|
23
|
+
ventas, incluyendo cálculos de precios, impuestos y descuentos.
|
|
24
|
+
|
|
25
|
+
## Instalacion
|
|
26
|
+
|
|
27
|
+
Puedes instalar el paquetes usando:
|
|
28
|
+
|
|
29
|
+
``` bash
|
|
30
|
+
pip install .
|
|
31
|
+
"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from setuptools import setup,find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='aplic_ventas',
|
|
5
|
+
version='0.1.0',
|
|
6
|
+
author='Armando Ruiz Rebollar',
|
|
7
|
+
author_email='elprofesor.armando@gmail.com',
|
|
8
|
+
description='Paquete para gestionar ventas, precios, impuestos y descuentos.',
|
|
9
|
+
long_description=open('README.md').read(),
|
|
10
|
+
long_description_content_type='text/markdown',
|
|
11
|
+
url='https://github.com/tu_usuario/gestor_ventas',
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
install_requires=[],
|
|
14
|
+
classifiers=[
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent"
|
|
18
|
+
],
|
|
19
|
+
python_require =">= 3.7"
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
#https://pypi.org/account/register/
|