python的项目结构
2020-04-17 本文已影响0人
飞跑的蛤蟆
- README.md
- LICENSE
- setup.py 打包和发布管理
- requirements.txt 开发依赖
sample/__init__.py
- sample/core.py # 核心代码
- sample/helpers.py
- docs/conf.py
- docs/index.rst
- tests/test_basic.py # 测试
- tests/test_advanced.py
- Makefile 常规的管理任务
- manage.py