Pypi

1

How to publish?

  1. Make sure you have token available here:

cat $HOME/.pypirc

[pypi]
  username = __token__
  password = pypi-...%
  1. Run these commands

python setup.py sdist bdist_wheel
twine upload dist/*

2


3


4


5


6


7


8


9


10


11


12


13


14


15


16


17


18


19


20


21


22


23


24


25


Last updated