We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbac5cd commit 70c8c35Copy full SHA for 70c8c35
setup.py
@@ -3,6 +3,18 @@
3
with open("README.md", "r") as fh:
4
long_description = fh.read()
5
6
+"""
7
+release checklist:
8
+1. update version on `setup.py`
9
+2. run tests with this command `pytest -vvx tests/`
10
+4. commit changes (`setup.py`) and push
11
+5. make release on PyPI. Run the following commands:
12
+ 5.1 `python3 setup.py sdist bdist_wheel`
13
+ 5.2 (optional) `python3 -m pip install --user --upgrade twine`
14
+ 5.3 `python3 -m twine upload dist/*`
15
+6. make a new release on github with the latest version
16
17
+
18
setuptools.setup(
19
name="topoloss",
20
version="0.0.0",
0 commit comments