아래의 제 개인 블로그에서 Poetry를 활용한 파이썬 프로젝트 의존성 관리에 대해 이야기했습니다.
Poetry?
Poetry 공식 웹사이트에는 Poetry를 이렇게 소개하고 있습니다. "Poetry is a tool for dependency management and packaging in Python. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. Poetry offers a lockfile to ensure repeatable installs, and can build your project for distribution."
요약하자면, Poetry는
파이썬의 의존성 관리와 패키징을 위한 도구이다
프로젝트가 의존하는 라이브러리를 선언하고 (pyproject.toml) 자동으로 관리해 준다
lock file을 통해 다른 개발자와 같은 의존성의 설치를 보장하고,
배포를 위한 빌드 기능도 제공한다
Why Poetry?
Poetry는 의존성 관리를 위한 올인원 솔루션을 제공하는 느낌입니다. 의존성의 설치, 기록, 업데이트, 격리 및 lock file 작성을 모두 Poetry로 간편하게 할 수 있습니다.
아래의 제 포스트에서는 설치 과정, 기본 기능 및 주요 명령어에 대해 설명하고 있습니다.
더 자세한 내용은 제 블로그에 있습니다:
https://kmsrogerkim.github.io/python/python-dependency-management-with-poetry/
다음 내용이 궁금하다면?
이미 회원이신가요?
2024년 9월 11일 오전 5:15