We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90b7bea commit c7af8acCopy full SHA for c7af8ac
setup.py
@@ -36,6 +36,8 @@
36
os.system('python setup.py sdist bdist_wheel') # Create new tar/wheel
37
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
38
os.system("python -m pip install 'twine>=1.15.0'")
39
+ print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
40
+ os.system("python -m pip install 'tqdm>=4.46.0'")
41
print("\n*** Publishing The Release to PyPI: ***\n")
42
os.system('python -m twine upload dist/*') # Requires ~/.pypirc Keys
43
print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")
0 commit comments