模块名称为:my_module
目录结构:
my_modulemy_module__init__.pymy_module_main.pysetup.py
python setup.pu sdist bdist_wheel
生成tar.gz包和whl文件用于安装
"""
python setup.py sdist bdist_wheel
"""from setuptools import setupsetup(name="my_module",version="1.0",author="my_module_author",description="my_module模块",
)