File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 6464 pip install twine
6565 pip install wheel
6666 python setup.py sdist bdist_wheel
67- twine upload dist/* -u $PYPI_USERNAME -p $PYPI_PASSWORD
67+ twine upload dist/* -u __token__ -p $PYPI_API_KEY
6868 env :
6969 PYPI_USERNAME : ${{ secrets.PYPI_USERNAME }}
7070 PYPI_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
@@ -132,7 +132,7 @@ jobs:
132132 pip install twine
133133 pip install wheel
134134 python setup.py sdist bdist_wheel
135- twine upload dist/* -u $PYPI_USERNAME -p $PYPI_PASSWORD
135+ twine upload dist/* -u __token__ -p $PYPI_API_KEY
136136 env :
137137 PYPI_USERNAME : ${{ secrets.PYPI_USERNAME }}
138138 PYPI_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "bandwidth"
33version = " 15.0.0"
44description = " Bandwidth"
55authors = [
" Bandwidth <[email protected] >" ]
6- license = " NoLicense "
6+ license = " MIT "
77readme = " README.md"
88repository = " https://github.com/GIT_USER_ID/GIT_REPO_ID"
99keywords = [" OpenAPI" , " OpenAPI-Generator" , " Bandwidth" ]
Original file line number Diff line number Diff line change 4545 install_requires = REQUIRES ,
4646 packages = find_packages (exclude = ["test" , "tests" ]),
4747 include_package_data = True ,
48- long_description = """\
49- Bandwidth's Communication APIs # noqa: E501
50- """
48+ long_description = long_description
5149)
You can’t perform that action at this time.
0 commit comments