Metadata-Version: 2.1
Name: muiscaenergy-comun
Version: 0.0.2
Summary: common functions for muiscaenergy projects
Home-page: https://pypi.org/project/
Author: Jairo Hernando Cervantes Garcia
License: MIT license
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# muiscaenergy-comun
Common functions for Muisca energy projects


Pasos
1. Crear un nuevo repositorio en github
2. Clonar el repositorio en local
3. Crear un nuevo proyecto en Pycharm
4. Crear un nuevo entorno virtual en Pycharm

Gitiignore
1. abra el archivo .gitignore 
2. comente la linea con (*.egg-info/)... en mi version es liena 24

Pasos para crear un paquete
1. agregar nuevo folder con src (python directory) y otro ocn test (python directory)
2. crear los archivos de folder

Pasos para subir el paquete a pypi
1. crear el archivo setup.py 
2. python setup.py sdist bdist_wheel --> creates egg, build, dist
3. commit and push to github
4. 'pip install twine' if not installed
5. twine check dist/* --> check if the package is ok
6. twine upload dist/* --> upload to pypi
7. (alternativa) twine upload dist/muiscaenergy-comun-0.0.2.tar.gz*


