Metadata-Version: 1.2
Name: excel_to_dict
Version: 1.0.3
Summary: A small package to convert records in excel into dict
Home-page: https://github.com/nixinxin/excel_to_dict
Author: nixinxin
Author-email: 1025464043@qq.com
License: UNKNOWN
Description: A small package to convert record in excel into dict.
        * 打包
            * 先编译包
            ```
            python setup.py build
            ```
            * 打包成源代码
            ```
            python setup.py sdist build
            ```
            * 生成egg包
            ```
            python setup.py bdist_egg
            ```
            * 生成 wheel 包
            ```
            python setup.py sdist bdist_wheel
            ```
        * 发布包
            ```
            # 发布 .tar.gz 包
            $ python setup.py sdist upload 
            # 发布 egg 包
            $ python setup.py bdist_egg upload 
            # 发布 wheel 包
            $ python setup.py bdist_wheel upload
            $ twine upload dist/* 主要用该命令
            ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
