跳到主要內容

發表文章

目前顯示的是 12月, 2019的文章

[python] python egg package

python egg       1. install egg packages   python setup.py  bdist_egg   *add directors - project_directoty   - dist   -build           2. project files        *files  archietacture   - project_directoty   -setup.py   - module_name   --__init__.py   --demo.py           ###setup.py###       from  setuptools  import setup,  find_packages       setup(       name=" project_name ",       version="0.1",       packages= find_packages (),        zip_safe =False,           description="demo egg",        long_description ="demo egg.",       author="una",        author_email="unachou@gmail.com ",           license="GPL",       # keywords =( "test", "egg"),       platforms=" Independant ",        url ="",       )