반응형 [python3.10 기본] 16. 프로젝트 구성 및 배포 16.1 프로젝트 디렉토리 구조효율적인 프로젝트 관리를 위해서는 디렉토리 구조를 잘 설계하는 것이 중요합니다. 일반적으로 파이썬 프로젝트는 다음과 같은 구조를 갖습니다.my_project/├── my_project/│ ├── __init__.py│ ├── module1.py│ ├── module2.py│ └── ...├── tests/│ ├── __init__.py│ ├── test_module1.py│ ├── test_module2.py│ └── ...├── docs/│ ├── conf.py│ ├── index.rst│ └── ...├── setup.py├── README.md├── requirements.txt└── .gitignoremy_project/: 프로.. 2024. 7. 2. 이전 1 다음 반응형