6 lines
145 B
Python
6 lines
145 B
Python
from os import system
|
|
|
|
system('rmdir /s /q build dist ipars.egg-info')
|
|
system('python setup.py sdist bdist_wheel')
|
|
system('twine upload dist/*')
|