Encryptors 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.
- Encryptors-0.1.0/Encryptors.egg-info/PKG-INFO +23 -0
- Encryptors-0.1.0/Encryptors.egg-info/SOURCES.txt +7 -0
- Encryptors-0.1.0/Encryptors.egg-info/dependency_links.txt +1 -0
- Encryptors-0.1.0/Encryptors.egg-info/requires.txt +1 -0
- Encryptors-0.1.0/Encryptors.egg-info/top_level.txt +1 -0
- Encryptors-0.1.0/PKG-INFO +23 -0
- Encryptors-0.1.0/README.md +6 -0
- Encryptors-0.1.0/setup.cfg +4 -0
- Encryptors-0.1.0/setup.py +22 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: Encryptors
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Una librería de ejemplo en Python
|
|
5
|
+
Home-page: UNKNOWN
|
|
6
|
+
Author: Anderson
|
|
7
|
+
Author-email: andersito0016@gmail.com
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Platform: UNKNOWN
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Mi Librería
|
|
17
|
+
|
|
18
|
+
Una librería de ejemplo para encriptacion con AES y Cifrado y verificacion de password con Sha512.
|
|
19
|
+
## Instalación
|
|
20
|
+
```bash
|
|
21
|
+
pip install encryptors
|
|
22
|
+
|
|
23
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cryptography>=42.0.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: Encryptors
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Una librería de ejemplo en Python
|
|
5
|
+
Home-page: UNKNOWN
|
|
6
|
+
Author: Anderson
|
|
7
|
+
Author-email: andersito0016@gmail.com
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Platform: UNKNOWN
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Mi Librería
|
|
17
|
+
|
|
18
|
+
Una librería de ejemplo para encriptacion con AES y Cifrado y verificacion de password con Sha512.
|
|
19
|
+
## Instalación
|
|
20
|
+
```bash
|
|
21
|
+
pip install encryptors
|
|
22
|
+
|
|
23
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="Encryptors", # Nombre de la librería
|
|
5
|
+
version="0.1.0", # Versión inicial
|
|
6
|
+
author="Anderson",
|
|
7
|
+
author_email="andersito0016@gmail.com",
|
|
8
|
+
description="Una librería de ejemplo en Python",
|
|
9
|
+
long_description=open("README.md").read(),
|
|
10
|
+
long_description_content_type="text/markdown",
|
|
11
|
+
packages=find_packages(), # Encuentra automáticamente todos los paquetes
|
|
12
|
+
classifiers=[
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
16
|
+
],
|
|
17
|
+
python_requires='>=3.10', # Versión mínima de Python
|
|
18
|
+
install_requires=[
|
|
19
|
+
"cryptography>=42.0.0", # Declarar dependencias
|
|
20
|
+
],
|
|
21
|
+
|
|
22
|
+
)
|