We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 557082f + f933eee commit 6c4b89eCopy full SHA for 6c4b89e
2 files changed
README.md
@@ -25,6 +25,19 @@ cd docs
25
make html
26
```
27
28
+## Release a New Version
29
+
30
+1. Edit `changelog` and `setup.py` (`version`).
31
+2. Commit them and add a new tag. Then publish a new release at GitHub.
32
+3. Publish the package at at PyPI with following commands:
33
34
+```sh
35
+python3 -m pip install --user --upgrade setuptools wheel
36
+rm -rf dist
37
+python3 setup.py sdist bdist_wheel
38
+python3 -m pip install --user --upgrade twine
39
+twine upload dist/*
40
+```
41
42
## License
43
setup.cfg
@@ -0,0 +1,2 @@
1
+[bdist_wheel]
2
+universal = 1
0 commit comments