Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions docs/guidelines/project_management/distribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,11 @@
作为项目的最后一环,分发至关重要。有良好的分发流程,便于使用。基于 Python 自带的分发机制显然是
更好的选择。

本文将以一个数据导出的项目讲述
本文以一个将文件数据导入 MongoDB 的项目为例,重点介绍打包分发,因此不展开功能开发

## 1. 项目准备

因为本文的重点是对打包分发,所以项目的功能开发就不作为重点。

项目源代码可以在 [pythonic-project-samples](https://github.com/whg517/pythonic-project-samples/tree/example/file2mongo) 中获取。

项目采用 `src` 目录结构,项目描述信息都在 `pyproject.toml` 中定义。
示例项目名为 `file2mongo`,采用 `src` 目录结构,项目描述信息都在 `pyproject.toml` 中定义。

## 2. 项目打包

Expand Down
2 changes: 1 addition & 1 deletion docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

这是一个快速上手的开发指南,本文通过一个包含主要知识点的简单项目,向开发者展示一个更符合 Python 规范和风格(Pythonic)的项目开发流程。

示例项目是一个单词统计的演示程序,如果你想查看完整示例,可以浏览 [Word Count](https://github.com/pyloong/pythonic-project-samples/tree/feature/word_count) 项目源码
后文将从项目初始化开始,逐步完成一个单词统计演示程序

## 1. 开发环境搭建

Expand Down