Please go through this link Maintainer Responsibility
Fork minio-py upstream source repository to your own personal repository.
$ git clone https://github.com/$USER_ID/minio-py
$ cd minio-py
Create a new pypirc
$ cat >> $HOME/.pypirc << EOF
[distutils]
index-servers =
pypi
[pypi]
username:minio
password:**REDACTED**
EOF
$ cat minio/__init__.py
...
...
__version__ = '0.3.0'
...
...
$ python setup.py sdist bdist bdist_wheel upload