Metadata-Version: 2.1
Name: RobertCommon
Version: 0.1.7
Summary: Robert Common Library
Home-page: https://github.com/hun0423/RobertCommon
Author: Robert0423
Author-email: 851010070@qq.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE


📦 RobertCommon (Robert Common Library) 
=======================

## Owners

* Owner: Robert0423
* Co-owner: Robert0423

## Build the package 

* Read first
[Packaging Python Projects](https://packaging.python.org/tutorials/packaging-projects/)

* Install build tool

	```text
	python -m pip install --upgrade build
	```

* Build package

	```text
	python -m build

## Upload to private Python Package Index - 

* Setup Python Package Index

Please refer to [Update .pypirc file](https://packaging.python.org/specifications/pypirc/), setup smartbeop python package index like below.
The user name and password can be found [here](https://code.smartbeop.com/devops/deployments/pypiserver/-/blob/master/README.md).

```text
[distutils]
index-servers = pypi

[robert]
	repository = https://upload.pypi.org/legacy/
	username = XXXX
	password = XXXX
```

* Install twine

	```shell
	python -m pip install --upgrade twine
	```
* Upload to smartbeop pypi

	```shell
	python -m twine upload dist/*
	```

