Metadata-Version: 2.1
Name: Cynthia
Version: 1.0.3
Summary: A sample Python project
Home-page: https://github.com/pypa/sampleproject
Author: Cynthia
Author-email: bbliu666@126.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/pypa/sampleproject
Project-URL: Funding, https://github.com/pypa/sampleproject
Project-URL: Say Thanks!, https://github.com/pypa/sampleproject
Project-URL: Source, https://github.com/pypa/sampleproject
Keywords: sample setuptools development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5, !=3.0.*, <4
Description-Content-Type: text/markdown
Requires-Dist: setuptools (>=41.1.0)
Requires-Dist: wheel
Provides-Extra: dev
Requires-Dist: twine ; extra == 'dev'
Provides-Extra: test
Requires-Dist: twine ; extra == 'test'

# 打包库模块并发布到PyPI

>**区别pyinstaller的打包成可执行文件！！！**

Markdown是一种可以使用普通文本编辑器编写的标记语言，通过简单的标记语法，它可以使普通文本内容具有一定的格式。它允许人们使用易读易写的纯文本格式编写文档，然后转换成格式丰富的HTML页面，Markdown文件的后缀名便是“.md”， 你可以使用[MdEditor](http://www.mdeditor.com/)在线编辑Markdown文档。包使用过程中如有任何疑问请联系Cynthia（bbliu666@126.com）。

## 环境准备
1. conda install setuptools
2. conda install wheel
3. conda install twine
4. 新建twine配置文件.pypirc

``` html
[distutils]
index-servers=pypi
[pypi]
repository = https://upload.pypi.org/legacy/
username: PyPI用户名
password: PyPI密码
```
## 操作步骤
1. python setup.py check
2. python setup.py sdist bdist_wheel
3. twine upload dist/*
4. 指定版本: twine upload dist/*1.0.3*

## 使用说明
```
import hellopy.hello as hh
import hellopy.opts.const as hoc
import hellopy.utils.tool as hut
```

## 版本更新历史
###### V-0.0.1 版本
1. 基础版本
2. 支持打包和发布

###### V-0.0.2 版本
1. 细化配置文件
2. 增加自定义包层级


