Skip to content

Commit 058ec82

Browse files
committed
Update MANIFEST.in
Update RELEASING.md Update setup.py and setup.cfg to include Python 3.6
1 parent f7ed57c commit 058ec82

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
include CHANGELOG.rst
12
include LICENSE
23
include README.rst
34
recursive-include docs *
5+
prune docs/_build
46
recursive-include examples *
57
recursive-include tests *

RELEASING.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,22 @@ Signing key: https://lgrahl.de/pgp-key.txt
3333
5. 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

3941
6. 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

4648
7. 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
```

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bdist_wheel]
2-
python-tag = py34.py35
2+
python-tag = py34.py35.py36
33

44
[flake8]
55
max-line-length = 90

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)