File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,12 @@ Install package so that new code is picked up in a restared python interpreter:
88pip install -e .
99```
1010
11+ ## TestPyPI
12+
13+ Install vom [ TestPyPI] ( https://test.pypi.org/project/rasmussenlab-mockup ) :
14+
15+ ```
16+ pip install -i https://test.pypi.org/simple/ rasmussenlab-mockup
17+ ```
18+
19+ > The package on PyPI is call ` rasmussenlab-mockup ` and not ` mockup ` as the package name is already taken. The import is still ` import mockup ` .
Original file line number Diff line number Diff line change 11# The __init__.py file is loaded when the package is loaded.
22# It is used to indicate that the directory in which it resides is a Python package
33
4- __version__ = (0 , 1 , 0 )
4+ # ! does not work yet:
5+ # from importlib import metadata
6+ # __version__ = metadata.version("mockup")
7+ __version__ = "24.02"
58
69from .mockup import add_one , Circle
710
You can’t perform that action at this time.
0 commit comments