distutils 打包setup.py

from distutils.core import setup
setup(name='hello',
      version='1.0',
      description='test example',
      author='test',
      py_modules=['hello'])
原文地址:https://www.cnblogs.com/feifeidxl/p/5617904.html