File tree 4 files changed +9
-4
lines changed
4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ include CHANGELOG.rst
1
2
include LICENSE
2
3
include README.rst
3
4
recursive-include docs *
5
+ prune docs/_build
4
6
recursive-include examples *
5
7
recursive-include tests *
Original file line number Diff line number Diff line change @@ -33,20 +33,22 @@ Signing key: https://lgrahl.de/pgp-key.txt
33
33
5 . Build source and binary distributions:
34
34
35
35
``` bash
36
+ rm -rf build dist saltyrtc.server.egg-info
37
+ find . \( -name \* .pyc -o -name \* .pyo -o -name __pycache__ \) -prune -exec rm -rf {} +
36
38
python setup.py sdist bdist_wheel
37
39
```
38
40
39
41
6 . Sign files:
40
42
41
43
``` 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
44
46
```
45
47
46
48
7 . Upload package to PyPI and push:
47
49
48
50
``` bash
49
- twine upload " dist/saltyrtc-${VERSION} *"
51
+ twine upload " dist/saltyrtc.server -${VERSION} *"
50
52
git push
51
53
git push --tags
52
54
```
Original file line number Diff line number Diff line change 1
1
[bdist_wheel]
2
- python-tag = py34.py35
2
+ python-tag = py34.py35.py36
3
3
4
4
[flake8]
5
5
max-line-length = 90
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ def read(file):
96
96
'Operating System :: OS Independent' ,
97
97
'Programming Language :: Python :: 3.4' ,
98
98
'Programming Language :: Python :: 3.5' ,
99
+ 'Programming Language :: Python :: 3.6' ,
99
100
'Topic :: Communications' ,
100
101
'Topic :: Internet' ,
101
102
'Topic :: Security' ,
You can’t perform that action at this time.
0 commit comments