Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 779 Bytes

MAINTAINERS.md

File metadata and controls

50 lines (35 loc) · 779 Bytes

For maintainers only

Responsibilities

Please go through this link Maintainer Responsibility

Setup your minio-py Github Repository

Fork minio-py upstream source repository to your own personal repository.

$ git clone https://github.com/$USER_ID/minio-py
$ cd minio-py

Publishing new packages

Setup your pypirc

Create a new pypirc

$ cat >> $HOME/.pypirc << EOF
[distutils]
index-servers =
    pypi

[pypi]
username:minio
password:**REDACTED**
EOF

Modify version

$ cat minio/__init__.py
...
...
__version__ = '0.3.0'
...
...

Upload to pypi

$ python setup.py sdist bdist bdist_wheel upload