File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1+ include CHANGELOG.rst
12include LICENSE
23include README.rst
34recursive-include docs *
5+ prune docs/_build
46recursive-include examples *
57recursive-include tests *
Original file line number Diff line number Diff line change @@ -33,20 +33,22 @@ Signing key: https://lgrahl.de/pgp-key.txt
33335 . Build source and binary distributions:
3434
3535 ``` bash
36+ rm -rf build dist saltyrtc.server.egg-info
37+ find . \( -name \* .pyc -o -name \* .pyo -o -name __pycache__ \) -prune -exec rm -rf {} +
3638 python setup.py sdist bdist_wheel
3739 ```
3840
39416 . Sign files:
4042
4143 ``` bash
42- gpg --detach-sign -u ${GPG_KEY} -a dist/saltyrtc-${VERSION} .tar.gz
43- gpg --detach-sign -u ${GPG_KEY} -a dist/saltyrtc-${VERSION} -py34.py35-none-any .whl
44+ gpg --detach-sign -u ${GPG_KEY} -a dist/saltyrtc.server -${VERSION} .tar.gz
45+ gpg --detach-sign -u ${GPG_KEY} -a dist/saltyrtc.server -${VERSION} * .whl
4446 ```
4547
46487 . Upload package to PyPI and push:
4749
4850 ``` bash
49- twine upload " dist/saltyrtc-${VERSION} *"
51+ twine upload " dist/saltyrtc.server -${VERSION} *"
5052 git push
5153 git push --tags
5254 ```
Original file line number Diff line number Diff line change 11[bdist_wheel]
2- python-tag = py34.py35
2+ python-tag = py34.py35.py36
33
44[flake8]
55max-line-length = 90
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ def read(file):
9696 'Operating System :: OS Independent' ,
9797 'Programming Language :: Python :: 3.4' ,
9898 'Programming Language :: Python :: 3.5' ,
99+ 'Programming Language :: Python :: 3.6' ,
99100 'Topic :: Communications' ,
100101 'Topic :: Internet' ,
101102 'Topic :: Security' ,
You can’t perform that action at this time.
0 commit comments