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

然后選擇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: 關鍵字,和論文的關鍵字類似
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: 需要打包的目錄,需要以根目錄為起點,可以使用
find_packages自動查找包,注意不要漏寫
install_requires: 包依賴的其他包
python_requires: python的版本需求
package_data: 需要的額外的文件,例如包強依賴一個本地文件,可以使用如下
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對包進行檢查
twine check dist/*
輸出如下

再運行上傳命令
twine upload dist/*
到此這篇關于用Python將庫打包發(fā)布到pypi的文章就介紹到這了,更多相關python打包到pypi內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
一文帶你精通Python中*args和**kwargs的應用技巧
如果能在Python中創(chuàng)建適應不同場景的函數(shù),而無需每次都重寫它們,會使得操作簡潔方便,這就是*args和**kwargs的魔力所在,下面我們就來看看它們的具體一些應用技巧吧2024-03-03
100行Python代碼實現(xiàn)每天不同時間段定時給女友發(fā)消息
這篇文章主要介紹了100行Python代碼,每天不同時間段定時給女友發(fā)消息,本文給出了實現(xiàn)思路,代碼簡單易懂非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下2019-09-09
python調(diào)用excel_vba的兩種實現(xiàn)方式
本文主要介紹了python調(diào)用excel_vba的兩種實現(xiàn)方式,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2023-01-01
Python結(jié)合Sprak實現(xiàn)計算曲線與X軸上方的面積
這篇文章主要介紹了Python結(jié)合Sprak實現(xiàn)計算曲線與X軸上方的面積,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習吧2023-02-02

