用Python將庫打包發佈到pypi
如果需要將自己寫好的python打包,並發佈到pypi,這樣其他人就可以直接通過pip install
來安裝對應的包,可以參考如下教程
1. 註冊pypi賬號並創建token
首先訪問https://pypi.org/ 並註冊賬號
然後跳轉到賬號設置
然後選擇API token->Add API token
輸入token name並在Scope中選擇Entire account(第一次需要選擇Entire account)
然後在本地,修改.pypirc
文件
輸入的內容為:
[pypi] username = __token__ password = {token}
隻需要修改{token}
為自己的token即可
2. 編寫setup.py和setup.cfg
setup.cfg的內容為
[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將庫打包發佈到pypi的文章就介紹到這瞭,更多相關python打包到pypi內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- None Found