Metadata-Version: 2.1
Name: RobertCommon
Version: 0.1.4
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
Requires-Dist: aliyun-python-sdk-core (==2.13.35)
Requires-Dist: aliyun-python-sdk-kms (==2.15.0)
Requires-Dist: amqp (==5.0.6)
Requires-Dist: billiard (==3.6.4.0)
Requires-Dist: bleach (==4.0.0)
Requires-Dist: bson (==0.5.10)
Requires-Dist: build (==0.6.0.post1)
Requires-Dist: celery (==5.1.2)
Requires-Dist: certifi (==2021.5.30)
Requires-Dist: cffi (==1.14.6)
Requires-Dist: charset-normalizer (==2.0.4)
Requires-Dist: click (==7.1.2)
Requires-Dist: click-didyoumean (==0.0.3)
Requires-Dist: click-plugins (==1.1.1)
Requires-Dist: click-repl (==0.2.0)
Requires-Dist: colorama (==0.4.4)
Requires-Dist: crcmod (==1.7)
Requires-Dist: cryptography (==3.4.7)
Requires-Dist: docutils (==0.17.1)
Requires-Dist: Flask (==2.0.1)
Requires-Dist: greenlet (==1.1.1)
Requires-Dist: idna (==3.2)
Requires-Dist: importlib-metadata (==4.6.3)
Requires-Dist: itsdangerous (==2.0.1)
Requires-Dist: Jinja2 (==3.0.1)
Requires-Dist: jmespath (==0.10.0)
Requires-Dist: keyring (==23.0.1)
Requires-Dist: kombu (==5.1.0)
Requires-Dist: MarkupSafe (==2.0.1)
Requires-Dist: numpy (==1.21.1)
Requires-Dist: oss2 (==2.15.0)
Requires-Dist: packaging (==21.0)
Requires-Dist: pandas (==1.3.1)
Requires-Dist: pep517 (==0.11.0)
Requires-Dist: pika (==1.2.0)
Requires-Dist: pkginfo (==1.7.1)
Requires-Dist: prompt-toolkit (==3.0.19)
Requires-Dist: psutil (==5.8.0)
Requires-Dist: pycparser (==2.20)
Requires-Dist: pycryptodome (==3.10.1)
Requires-Dist: pycryptodomex (==3.10.1)
Requires-Dist: pyftpdlib (==1.5.6)
Requires-Dist: Pygments (==2.9.0)
Requires-Dist: pyparsing (==2.4.7)
Requires-Dist: python-dateutil (==2.8.2)
Requires-Dist: pytz (==2021.1)
Requires-Dist: pywin32 (==301)
Requires-Dist: pywin32-ctypes (==0.2.0)
Requires-Dist: pyzipper (==0.3.5)
Requires-Dist: readme-renderer (==29.0)
Requires-Dist: redis (==3.5.3)
Requires-Dist: requests (==2.26.0)
Requires-Dist: requests-toolbelt (==0.9.1)
Requires-Dist: rfc3986 (==1.5.0)
Requires-Dist: six (==1.16.0)
Requires-Dist: SQLAlchemy (==1.4.22)
Requires-Dist: tomli (==1.2.1)
Requires-Dist: tqdm (==4.62.0)
Requires-Dist: twine (==3.4.2)
Requires-Dist: urllib3 (==1.26.6)
Requires-Dist: vine (==5.0.0)
Requires-Dist: wcwidth (==0.2.5)
Requires-Dist: webencodings (==0.5.1)
Requires-Dist: Werkzeug (==2.0.1)
Requires-Dist: zipp (==3.5.0)


📦 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

[smartbeop]
	repository = https://upload.pypi.org/legacy/
	username = %username%
	password = %password%
```

* Install twine

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

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

