python将模块进行打包

模块名称为:my_module
目录结构:

my_module
    my_module
        __init__.py
        my_module_main.py
    setup.py
python setup.pu sdist bdist_wheel

生成tar.gz包和whl文件用于安装

"""
python setup.py sdist bdist_wheel
"""

from setuptools import setup

setup(
    name="my_module",
    version="1.0",
    author="my_module_author",
    description="my_module模块",
)

你可能感兴趣的:(python,服务器)