1. 程式人生 > >python 安裝包制作

python 安裝包制作

rom script import init .py name scrip utils sdi

1、 __init__.py

2、模塊1  模塊2

3、setup.py

from distutils.core import setup
setup(name=‘modules_name‘,version=‘1.0‘,description=‘modules_desc‘,author=‘author‘,py_modules=[‘模塊1‘,‘模塊2‘])

python setup.py build

python setup.py sdist

ok

python 安裝包制作