10 lines
346 B
Bash
10 lines
346 B
Bash
# NPM Authentication
|
|||
|
|
# Get token from: https://www.npmjs.com/settings/YOUR_USERNAME/tokens
|
||
|
|
# Choose "Automation" type to bypass 2FA
|
||
|
|
NPM_TOKEN=npm_YOUR_TOKEN_HERE
|
||
|
|
|
||
|
|
# PyPI Authentication
|
||
|
|
# Get token from: https://pypi.org/manage/account/token/
|
||
|
|
# Use __token__ as username when prompted
|
||
|
|
TWINE_USERNAME=__token__
|
||
|
|
TWINE_PASSWORD=pypi-YOUR_TOKEN_HERE
|