Python製作egg檔案包

不·一發表於2019-02-15

下面開始egg檔案的製作:

在要打包的資料夾父目錄中新建setup.py

#setup.py

#coding=utf8

from setuptools import setup, find_packages

setup(
    name = "eggtest",
    version = "0.1",
    packages = find_packages(),

    description = "egg test demo",
    long_description = "egg test demo",
    author = "buyi",
    author_email = "ziwu361@163.com",

    license = "GPL",
    keywords = ("test", "egg"),
    platforms = "Independant",
    url = "http://blog.csdn.net/hong201/", 
	
)
複製程式碼

相關文章