diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4a3d863..d6e5143 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,6 +38,6 @@ jobs: - name: Upload run: python3 -m twine upload -u __token__ -p ${{ secrets.TEST_PYPI_TOKEN }} --repository testpypi --skip-existing dist/* - name: Test - run: pip install -i -i https://test.pypi.org/simple/ pyclasher==$PACKAGE_VERSION + run: pip install -i https://test.pypi.org/simple/ pyclasher==$PACKAGE_VERSION - name: Upload run: python3 -m twine upload -u __token__ -p ${{ secrets.PYPI_TOKEN }} --repository pypi dist/* diff --git a/setup.py b/setup.py index 53b30d3..c1bfa08 100644 --- a/setup.py +++ b/setup.py @@ -5,6 +5,7 @@ with open('requirements.txt') as requirements_txt: requirements = requirements_txt.read().splitlines() + print(requirements) with open('README.md', 'r', encoding='utf-8') as readme_md: readme = readme_md.read() @@ -16,7 +17,7 @@ version=pyclasher.__version__, author='201st-Luka', author_email='201stLuka@gmail.com', - description='pyclasher - an object-oriented wrapper client for Python ' + description='PyClasher - an object-oriented wrapper client for Python ' 'that provides easy access to the requested data', long_description=readme, long_description_content_type='text/markdown',