創(chuàng)新互聯(lián)www.cdcxhl.cn八線動(dòng)態(tài)BGP香港云服務(wù)器提供商,新人活動(dòng)買多久送多久,劃算不套路!
站在用戶的角度思考問題,與客戶深入溝通,找到景德鎮(zhèn)網(wǎng)站設(shè)計(jì)與景德鎮(zhèn)網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:成都網(wǎng)站制作、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、申請(qǐng)域名、虛擬主機(jī)、企業(yè)郵箱。業(yè)務(wù)覆蓋景德鎮(zhèn)地區(qū)。小編給大家分享一下python中setuptools指的是什么,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
Setuptools是Python Distutils的加強(qiáng)版,可以讓程序員更方便的創(chuàng)建和發(fā)布 Python 包,特別是那些對(duì)其它包具有依賴性的狀況。用setuptools構(gòu)建和發(fā)布的包與用Distutils發(fā)布的包是類似的。
包的使用者無(wú)需安裝setuptools就可以使用該包。如果用戶是從源碼包開始構(gòu)建,并且沒有安裝過setuptools的話,則只要在你的setup腳本中包含一個(gè)bootstrap模塊(ez_setup),用戶構(gòu)建時(shí)就會(huì)自動(dòng)下載并安裝setuptools了。
一:基本用例
下面是一個(gè)使用setuptools的簡(jiǎn)單例子:
from setuptools import setup, find_packages setup( name = "HelloWorld", version = "0.1", packages = find_packages(), )
上面就是一個(gè)最簡(jiǎn)單的setup腳本,使用該腳本,就可以產(chǎn)生eggs,上傳PyPI,自動(dòng)包含setup.py所在目錄中的所有包等。
當(dāng)然,上面的腳本過于簡(jiǎn)單,下面是一個(gè)稍微復(fù)雜的例子:
from setuptools import setup, find_packages setup( name = "HelloWorld", version = "0.1", packages = find_packages(), scripts = ['say_hello.py'], # Project uses reStructuredText, so ensure that the docutils get # installed or upgraded on the target machine install_requires = ['docutils>=0.3'], package_data = { # If any package contains *.txt or *.rst files, include them: '': ['*.txt', '*.rst'], # And include any *.msg files found in the 'hello' package, too: 'hello': ['*.msg'], }, # metadata for upload to PyPI author = "Me", author_email = "me@example.com", description = "This is an Example Package", license = "PSF", keywords = "hello world example examples", url = "http://example.com/HelloWorld/", # project home page, if any # could also include long_description, download_url, classifiers, etc. )
看完了這篇文章,相信你對(duì)python中setuptools指的是什么有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝各位的閱讀!