mirror of
https://github.com/drone-plugins/drone-pypi.git
synced 2026-06-04 18:24:00 +08:00
66 lines
984 B
Markdown
66 lines
984 B
Markdown
# drone-pypi
|
|
|
|
Drone plugin for publishing to the Python package index
|
|
|
|
## Usage
|
|
|
|
Upload a source distribution to PyPI
|
|
|
|
```sh
|
|
./drone-pypi <<EOF
|
|
{
|
|
"workspace": {
|
|
"path": "/drone/my-module-py"
|
|
}
|
|
"vargs": {
|
|
"username": "guido",
|
|
"password": "secret"
|
|
}
|
|
}
|
|
EOF
|
|
```
|
|
|
|
Upload a source distribution and a wheel to PyPI
|
|
|
|
```sh
|
|
./drone-pypi <<EOF
|
|
{
|
|
"workspace": {
|
|
"path": "/drone/my-module-py"
|
|
}
|
|
"vargs": {
|
|
"distributions": ["sdist", "bdist_wheel"],
|
|
"username": "guido",
|
|
"password": "secret"
|
|
}
|
|
}
|
|
EOF
|
|
```
|
|
|
|
Upload a source distribution to a private PyPI server, e.g. [simplepypi][]
|
|
|
|
```sh
|
|
./drone-pypi <<EOF
|
|
{
|
|
"workspace": {
|
|
"path": "/drone/my-module-py"
|
|
}
|
|
"vargs": {
|
|
"repository": "https://pypi.example.com"
|
|
}
|
|
}
|
|
EOF
|
|
```
|
|
|
|
[simplepypi]: https://github.com/steiza/simplepypi
|
|
|
|
## Docker
|
|
|
|
Build the Docker container using the `netgo` build tag to eliminate
|
|
the CGO dependency:
|
|
|
|
```sh
|
|
CGO_ENABLED=0 go build -a -tags netgo
|
|
docker build --rm=true -t plugins/drone-pypi .
|
|
```
|