Una librería para resolver sistemas de ecuaciones lineales y no lineales en Python.
Project description
AC12066UNO
AC12066UNO es una librería en Python para resolver sistemas de ecuaciones lineales y no lineales usando varios métodos matemáticos, como Gauss, Gauss-Jordan, Cramer, LU, Jacobi, Gauss-Seidel y Bisección.
Instalación
Puedes instalar la librería desde PyPI usando pip:
pip install AC12066UNO
#### 1.2 **Comentarios en el código:**
Asegúrate de que todas las funciones estén bien documentadas usando **docstrings**. Esto facilita tanto el uso como el mantenimiento de la librería. Ya lo estás haciendo muy bien en tu código, solo verifica que no falte ningún detalle importante.
### 🌐 **2. Subir la librería a PyPI:**
#### 2.1 **Crear un archivo `setup.py`:**
Este archivo contiene toda la información sobre tu librería para PyPI, incluyendo nombre, versión, autor, dependencias y demás. Aquí tienes un ejemplo básico:
```python
from setuptools import setup, find_packages
setup(
name='AC12066UNO',
version='0.1.0',
description='Librería para resolver sistemas de ecuaciones lineales y no lineales.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Martín',
author_email='martin.a.ac@outlook.com',
url='https://github.com/ale-0293/AC12066UNO',
packages=find_packages(),
install_requires=[],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file AC12066UNO-0.1.0.tar.gz.
File metadata
- Download URL: AC12066UNO-0.1.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
898b79deada48fe739c744c3e928a72d78928a18796542750c8809a93091fbd2
|
|
| MD5 |
ba39a3784b3c52ad51c9cb62d401d137
|
|
| BLAKE2b-256 |
92edb4e38b87d8fb694875669e525c82f2340ee383a39e1af0e394082553264b
|
File details
Details for the file AC12066UNO-0.1.0-py3-none-any.whl.
File metadata
- Download URL: AC12066UNO-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4be4c8086cafd81aaf2986cde7846518740c5d8e37cdd426f76ae19d379347f5
|
|
| MD5 |
46f974f18b03ab6b082855607d1d6ec0
|
|
| BLAKE2b-256 |
7fdc4cc2aee766d111b8d6989b839ad6c8769c0e7ea543c80382aa122c7b75d3
|