91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中setuptools指的是什么

發布時間:2020-07-09 15:14:35 來源:億速云 閱讀:290 作者:清晨 欄目:編程語言

小編給大家分享一下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指的是什么有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

萍乡市| 西乡县| 庄浪县| 浠水县| 乌拉特前旗| 新密市| 芦山县| 赤壁市| 芮城县| 新营市| 尉氏县| 延长县| 奈曼旗| 东方市| 车致| 嵊州市| 湘潭市| 阿图什市| 青阳县| 凤凰县| 康马县| 凤冈县| 丹寨县| 理塘县| 合川市| 华宁县| 丹棱县| 全南县| 稻城县| 云霄县| 安吉县| 正宁县| 永福县| 太仆寺旗| 余干县| 资讯| 淮阳县| 乌恰县| 大渡口区| 紫金县| 镶黄旗|