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 31bbb4f commit c03d515Copy full SHA for c03d515
.github/workflows/pypi.yml
@@ -28,9 +28,14 @@ jobs:
28
run: |
29
pip install -U pip
30
pip install -r requirements.txt
31
- pip install setuptools wheel
+ pip install setuptools twine wheel
32
python setup.py sdist bdist_wheel
33
34
+ - name: Verify README
35
+ # https://packaging.python.org/guides/making-a-pypi-friendly-readme/#validating-restructuredtext-markup
36
+ run: |
37
+ python -m twine check dist/*
38
+
39
- name: Upload builds
40
uses: actions/upload-artifact@v3
41
with:
setup.py
@@ -36,6 +36,7 @@
},
python_requires='>=3.8',
long_description=readme,
+ long_description_content_type='text/x-rst',
keywords=['plex', 'api'],
classifiers=[
42
'Operating System :: OS Independent',
0 commit comments