您好,登錄后才能下訂單哦!
小編給大家分享一下python中setuptools指的是什么,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
Setuptools是Python Distutils的加強版,可以讓程序員更方便的創建和發布 Python 包,特別是那些對其它包具有依賴性的狀況。用setuptools構建和發布的包與用Distutils發布的包是類似的。
包的使用者無需安裝setuptools就可以使用該包。如果用戶是從源碼包開始構建,并且沒有安裝過setuptools的話,則只要在你的setup腳本中包含一個bootstrap模塊(ez_setup),用戶構建時就會自動下載并安裝setuptools了。
一:基本用例
下面是一個使用setuptools的簡單例子:
from setuptools import setup, find_packages setup( name = "HelloWorld", version = "0.1", packages = find_packages(), )
上面就是一個最簡單的setup腳本,使用該腳本,就可以產生eggs,上傳PyPI,自動包含setup.py所在目錄中的所有包等。
當然,上面的腳本過于簡單,下面是一個稍微復雜的例子:
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. )
看完了這篇文章,相信你對python中setuptools指的是什么有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。