windows平臺 pypi打包分發 2019

打包分發僅需兩條命令

請注意,內容的時效性。畢竟文檔更新很快python

先註冊一個pypi的帳號
連接:https://pypi.orgurl

一、準備setup文件,放在與項目同級的目錄

簡單的setup文件以下就行code

from distutils.core import setup

setup(
    name = "projectname", # 

    author = "xxxx",
    version = "1.0.0",
    author_email = "xxxx@163.com",
    url = "http://www.xxx.com"
)

二、準備.pypirc文件,放在C:/用戶/

[distutils]
index-servers =
    pypi

[pypi]
repository:https://test.pypi.org/legacy/
username:pypiusername
password:pypipassword

三、python setup.py check

先作一些檢查
注意有沒有錯誤和警告server

四、python setup.py sdist upload -r pypi

直接打包發佈blog

最後奉上文檔鏈接

https://packaging.python.org/tutorials/packaging-projects/ip

完成
文檔

相關文章
相關標籤/搜索