Document first publish (something went wrong xd)

This commit is contained in:
ChillerDragon 2023-03-16 15:04:01 +01:00
parent a41a59eda8
commit 9b264eb45d

View file

@ -12,7 +12,13 @@ for msg in packet.messages:
print(msg.name) # => close print(msg.name) # => close
``` ```
## setup ## install
```bash
pip install twnet_parser
```
## development setup
```bash ```bash
git clone https://gitlab.com/teeworlds-network/twnet_parser git clone https://gitlab.com/teeworlds-network/twnet_parser
@ -43,5 +49,6 @@ mypy src/
```bash ```bash
pip install -r requirements/dev.txt pip install -r requirements/dev.txt
python -m build python -m build
git tag -a v0.0.1 -m '# version 0.0.1'
python -m twine upload dist/* python -m twine upload dist/*
``` ```