Files
plugin-drone-pypi/DOCS.md
T
Michael Steinert 128a5beca4 Initial commit
2015-11-12 14:30:16 -06:00

20 lines
528 B
Markdown

Use the PyPI plugin to deploy a Python package to a PyPI server.
* **repository** - The repository name (optional)
* **username** - The username to login with (optional)
* **password** - A password to login with (optional)
* **distributions** - A list of distribution types to deploy (optional)
The following is an example configuration for your .drone.yml:
```yaml
deploy:
pypi:
repository: https://pypi.python.org/pypi
username: guido
password: secret
distributions:
- sdist
- bdist_wheel
```