mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-13 07:04:49 -06:00
13 lines
227 B
Bash
Executable File
13 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Limpa diretório dist anterior se existir
|
|
rm -rf dist/*
|
|
|
|
# Gera os arquivos de distribuição
|
|
python setup.py sdist bdist_wheel
|
|
|
|
# Faz upload para o PyPI
|
|
twine upload dist/*
|
|
|
|
echo "Pacote publicado com sucesso!"
|