用Python將庫打包發(fā)布到pypi
如果需要將自己寫好的python打包,并發(fā)布到pypi,這樣其他人就可以直接通過pip install來安裝對應(yīng)的包,可以參考如下教程
1. 注冊pypi賬號并創(chuàng)建token
首先訪問https://pypi.org/ 并注冊賬號
然后跳轉(zhuǎn)到賬號設(shè)置

然后選擇API token->Add API token

輸入token name并在Scope中選擇Entire account(第一次需要選擇Entire account)

然后在本地,修改.pypirc文件
輸入的內(nèi)容為:
[pypi]
username = __token__
password = {token}
只需要修改{token}為自己的token即可
2. 編寫setup.py和setup.cfg
setup.cfg的內(nèi)容為
[metadata] license_files = LICENSE.txt
LICENSE.txt是license文件,需要自行編寫
setup.py在根目錄下,一個示例為
from setuptools import setup
import compileall
from os import path
# 讀取readme文件,這樣可以直接顯示在主頁上
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
compileall.compile_dir("src")
setup(
name='my-python',
version='1.0.2',
packages=['src',
'src.main',
'src.main.config'],
url='https://github.com/hTangle',
license='Apache 2.0',
author='hTangle',
author_email='',
description='',
keywords='',
python_requires='>=3.4, <4',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['requests']
)
具體的字段含義如下:
name: 包名
version: 版本號,支持如下形式
1.2.0.dev1 # Development release 1.2.0a1 # Alpha Release 1.2.0b1 # Beta Release 1.2.0rc1 # Release Candidate 1.2.0 # Final Release 1.2.0.post1 # Post Release 15.10 # Date based release 23 # Serial release
description: 包描述,會放在如下圖所示的位置處

url: 包的鏈接,可以使用github鏈接,pypi會自動獲取到倉庫的信息,示例如下:

author: 作者
license: 許可證
classifiers: 分類,示例如下:
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords: 關(guān)鍵字,和論文的關(guān)鍵字類似
project_urls: 一些項目的其他鏈接,示例如下
project_urls={
'Documentation': 'https://packaging.python.org/tutorials/distributing-packages/',
'Funding': 'https://donate.pypi.org',
'Say Thanks!': 'http://saythanks.io/to/example',
'Source': 'https://github.com/pypa/sampleproject/',
'Tracker': 'https://github.com/pypa/sampleproject/issues',
},
packages: 需要打包的目錄,需要以根目錄為起點(diǎn),可以使用
find_packages自動查找包,注意不要漏寫
install_requires: 包依賴的其他包
python_requires: python的版本需求
package_data: 需要的額外的文件,例如包強(qiáng)依賴一個本地文件,可以使用如下
package_data={
'sample': ['package_data.dat'],
},
3. 打包
打包命令為
python setup.py cmd
cmd可以取值為
bdist_wheel : create a wheel distribution
bdist_egg : create an “egg” distribution
sdist : create a source distribution (tarball, zip file, etc.)
bdist : create a built (binary) distribution
bdist_dumb : create a “dumb” built distribution
bdist_rpm : create an RPM distribution
bdist_wininst : create an executable installer for MS Windows
打包為tar.gz
python setup.py sdist
打包好的文件再dist目錄下
4. 上傳
可以首先使用twine對包進(jìn)行檢查
twine check dist/*
輸出如下

再運(yùn)行上傳命令
twine upload dist/*
到此這篇關(guān)于用Python將庫打包發(fā)布到pypi的文章就介紹到這了,更多相關(guān)python打包到pypi內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Python實(shí)現(xiàn)像awk一樣分割字符串
這篇文章主要介紹了Python實(shí)現(xiàn)像awk一樣分割字符串,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2020-09-09
python數(shù)據(jù)結(jié)構(gòu)之二叉樹的統(tǒng)計與轉(zhuǎn)換實(shí)例
這篇文章主要介紹了python數(shù)據(jù)結(jié)構(gòu)之二叉樹的統(tǒng)計與轉(zhuǎn)換實(shí)例,例如統(tǒng)計二叉樹的葉子、分支節(jié)點(diǎn),以及二叉樹的左右兩樹互換等,需要的朋友可以參考下2014-04-04
Python單體模式的幾種常見實(shí)現(xiàn)方法詳解
這篇文章主要介紹了Python單體模式的幾種常見實(shí)現(xiàn)方法,結(jié)合實(shí)例形式分析了Python單體模式的實(shí)現(xiàn)方法、原理與相關(guān)注意事項,需要的朋友可以參考下2017-07-07
為什么str(float)在Python 3中比Python 2返回更多的數(shù)字
很多朋友質(zhì)疑為什么str(float)在Python 3中比Python 2返回更多的數(shù)字,在Python 2.7中,一個float的repr返回最接近十七位數(shù)的十進(jìn)制數(shù);這足以精確地識別每個可能的IEEE浮點(diǎn)值。對此問題很多朋友都很疑問,下面小編給大家簡單介紹下,需要的朋友可以參考下2018-10-10
深入探討Python中的內(nèi)置類屬性`__repr__`
在Python中,__repr__是一個特殊的內(nèi)置類屬性,用于定義類的字符串表示形式,本文將深入探討__repr__的作用、用法以及一些實(shí)際應(yīng)用場景,希望對大家有所幫助2023-12-12
python之如何使用openpyxl設(shè)置單元格樣式
這篇文章主要介紹了python之如何使用openpyxl設(shè)置單元格樣式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-06-06

