2024-12-09 23:14:11 +00:00
|
|
|
First generate a built disti:
|
|
|
|
|
|
|
|
```
|
2024-12-10 19:43:39 +00:00
|
|
|
python -m pip install --upgrade build
|
2024-12-09 23:14:11 +00:00
|
|
|
python -m build --sdist --outdir dist/alpha5/
|
|
|
|
```
|
|
|
|
|
|
|
|
Then try a test ``pypi`` upload:
|
|
|
|
|
|
|
|
```
|
|
|
|
python -m twine upload --repository testpypi dist/alpha5/*
|
|
|
|
```
|
|
|
|
|
|
|
|
The push to `pypi` for realz.
|
|
|
|
|
|
|
|
```
|
|
|
|
python -m twine upload --repository testpypi dist/alpha5/*
|
|
|
|
```
|