setup.py

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2023 Jun 20 15:39
Editor
Edited
Edited
2023 Jun 23 17:18
Refs
setup.py 로 직접설치하면 pip를 사용한 설치가 아니기 때문에 pip uninstall을 사용할 수 없다
  • name””
  • version””
  • description””
  • author””
  • author_email””
  • license””
  • url””
  • py_modules[]
  • packages - from setuptools import find_packages
  • install_requires[]
  • packages[]
  • extras_require[]
  • tests_require[]
  • package_data{}
  • entry_point{} - for cli
python setup.py upload 는 http 사용해서 twine 배포
 
 
 

New Commands

Paul Ganssle - Why you shouldn't invoke setup.py directly
The setup.py interface is an old convention from distutils, one that has bugs that cannot be fixed to bring it into line with modern Python packaging approaches. As a result, all direct...
 
 
 

 

Backlinks

pip install

Recommendations