如何將自己的python代碼發佈在pip install給別人使用你知道嗎

1.編寫模塊結構

1.1 git創建空文件

在 阿裡雲git上創建一個空項目yuesf08, 項目屬性為public, 並下拉到本地,如下圖所示git/yuesf08。

1.2 編寫包功能函數

yuesf08文件下創建包yuesfpug, 第一個init函數必須存在,第二個是用戶編寫的函數。

# init.py
# -*- coding:utf-8 -*-
from . import add_num
# add.num.py
# -*- coding:utf-8 -*-
def add_num(a,b):
    return a+b

 

1.3 包必備函數

1、README.md文件是在git上生成的說明項目的文件

2、setup.py文件內容

from distutils.core import  setup
import setuptools
packages = ['yuesfpug']# 唯一的包名
setup(name='yuesfpug',
	version='1.0',
	author='yuesf',
    packages=packages, 
    package_dir={'requests': 'requests'},)

3、liciense.txt文件內容

Copyright © 2021 yuesf Authors. All Rights Reserve.
Licensed under the Apache License, Version 2.0 (the “License”);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an “AS IS” BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

2. 生成模塊

2.1 提前安裝需要的庫

pip install twine
pip install wheel

2.2 生成上圖的1-3文件

cmd一定要進入路徑D:\yuesf\shangfei\git\yuesf08

# 1. 編譯
python setup.py build
# 2. 生成發佈壓縮包:
python setup.py sdist
# 3. 生成網絡發佈包wheel文件:
python setup.py bdist_wheel

 

3. 安裝本地包

cmd一定要進入路徑D:\yuesf\shangfei\git\yuesf08\dist

pip install yuesfpug-1.0-py3-none-any.whl

 

4. 本地測試

通過測試我們發現,add_num.py實際上可以看作一個模塊,裡面的函數也是add_num,所以調用是add_num.add_num(a,b)

5. 上傳到pypi

cmd一定要進入路徑D:\yuesf\shangfei\git\yuesf08\dist

在pypi官網註冊,上傳代碼時填寫pypi賬號、密碼。

twine upload dist/*

 

6. 安裝上傳的包

先刪除本地安裝的包,再安裝上傳的包,這個時候的路徑是C盤。

總結

本片文章就到這裡瞭,希望能夠給你帶來幫助,也希望您能夠多多關註WalkonNet的更多內容!

推薦閱讀: