hello_juan

Un saludo a Juan


Keywords
testing
License
MIT
Install
pip install hello_juan==0.18

Documentation

hello_juan

Este proyecto es simplemente para probar el workflow de publicar un package en PyPI.

Package & Upload

git commit -a git push git tag 0.1 # esta version tiene que coincidir con la del setup.py también en la parte de download_url (cuando se taguea y pushea github crea un tar.gz) git push --tags origin master

python setup.py sdist upload -r pypi

Install

virtualenv env source venv/bin/activate pip install hello_juan

## Use

hello_juan will print: "hello Juan!" because of the line: entry_points in the setup.py

vim aux.py from hello_juan.say_hello import say_it say_it()

python aux.py