File: distribute

package info (click to toggle)
pyfibaro 0.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 460 kB
  • sloc: python: 1,931; sh: 9; makefile: 3
file content (10 lines) | stat: -rwxr-xr-x 220 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash
# Distribute the library to pypi.org.

# Delete dist directory to ensure a clean build
rm -r dist

python -m build

python -m twine upload dist/*
# python -m twine upload --repository testpypi dist/*