어떻게 자신의 python 라 이브 러 리 를 wheel 파일 로 포장 하여 pypi 에 업로드 합 니까?

새 항목
다음 그림,예 를 들 어 sigma 디 렉 터 리 는 제 가 업로드 하고 자 하 는 프로젝트 입 니 다.six-sigma 디 렉 터 리 에 세 개의 파일 을 새로 만 듭 니 다.그것 은 바로 LICENSE,즉 오픈 소스 프로 토 콜 입 니 다.README.md 파일 은 자신의 프로젝트 와 setup.py 라 는 프로필 을 소개 하 는 데 사 용 됩 니 다.이 파일 은 프로젝트 와 작성 자 에 대한 정 보 를 설정 합 니 다.다음은 저희 가 일일이 소개 하 겠 습 니 다.
在这里插入图片描述
라이선스 파일
Copyright (c) 2018 The Python Packaging Authority
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
README.md 파일

# Example Package

This is a simple example package. You can use
[Github-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
to write your content.
setup.py 파일

import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

setuptools.setup(
    name="sigma_t",  #     
    version="0.0.1",  #       
    author="AlanRick",  #              
    author_email="[email protected]",  #     
    description="six sigma project",  #     
    long_description=long_description,  #                README.md  
    long_description_content_type="text/markdown",  #            
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    package_dir={"": "src"},  #         
    packages=setuptools.find_packages(where="src"),  #         
    python_requires=">=3.6",  # python      
)
설치 에 필요 한 플러그 인
pypi.org 에 계 정 을 등록 하고 다음 명령 을 수행 하 였 는 지 확인 하 십시오.

pip install wheel
pip install twine
압축 파일 은*.whl 입 니 다.
먼저 터미널 cd 에서 setup.py 파일 이 있 는 디 렉 터 리 에 있 고 터미널 에서 다음 명령 을 실행 하여 포장 합 니 다.

python setup.py bdist_wheel
패키지 완료 후 다음 파일 생 성
在这里插入图片描述
가방 을 pypi 에 업로드

python -m twine upload  dist/sigma-0.0.1-py3-none-any.whl
다음 터미널 에서 사용자 이름과 비밀 번 호 를 입력 하고 업로드 하 는 것 을 알려 줍 니 다.
在这里插入图片描述
다음 업로드 성공
在这里插入图片描述
pypi 프로젝트 관리 페이지 에서 방금 업로드 한 파일 을 볼 수 있 습 니 다.
在这里插入图片描述
항목 을 누 르 면 설정 파일 이 프론트 에 표 시 됩 니 다.
在这里插入图片描述
在这里插入图片描述
결어
pypi 홈 페이지 방법 을 참고 하여 업로드 할 수도 있 습 니 다.
자신의 python 라 이브 러 리 를 wheel 파일 로 포장 하여 pypi 에 올 리 는 방법 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 python 라 이브 러 리 를 wheel 로 포장 하여 pypi 에 올 리 는 내용 은 예전 의 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많이 응원 해 주세요!

좋은 웹페이지 즐겨찾기