Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/onlytiancai/pyempty
python空项目
https://github.com/onlytiancai/pyempty
Last synced: 3 months ago
JSON representation
python空项目
- Host: GitHub
- URL: https://github.com/onlytiancai/pyempty
- Owner: onlytiancai
- Created: 2012-09-07T03:38:53.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-08-12T10:23:21.000Z (over 11 years ago)
- Last Synced: 2024-06-24T06:32:04.060Z (5 months ago)
- Language: CSS
- Size: 102 KB
- Stars: 124
- Watchers: 22
- Forks: 39
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.txt
Awesome Lists containing this project
README
# pyempty
好的开始是成功的一半,写python代码就从这里开始吧。
## 目录介绍
1. ./ChangeLog.txt :变更历史
1. ./LICENES.txt :协议
1. ./run_all_test.sh :执行test目录下的所有单元测试
1. ./lint.sh: 检查所有python代码的风格
1. ./MANIFEST.in :文件清单,distutils默认只打包指定模块下的.py文件,其它的要在这里指定
1. ./README.md :项目介绍
1. ./requirements.txt :项目需要依赖哪些模块
1. ./setup.py :安装文件
1. ./docs/ :文档目录
1. ./docs/analysis.model.md :概要设计文档
1. ./docs/design.model.md :详细设计文档
1. ./docs/maintain.md :维护文档
1. ./src/ :源码目录
1. ./src/pyempty : 项目代码
1. ./src/pyempty/stuff :杂项文件,在setup.py里用package_data参数指定
1. ./test/ :测试目录
1. ./test/test_pyempty.py :测试示例## 参考连接
1. [Python 打包指南](http://www.ibm.com/developerworks/cn/opensource/os-pythonpackaging/)
1. [深入Python3.0:打包 Python 类库](http://woodpecker.org.cn/diveintopython3/packaging.html)
1. [python打包:分发指定文件](http://docs.python.org/release/3.1.5/distutils/sourcedist.html#manifest)
1. [深入python3.0: 单元测试](http://woodpecker.org.cn/diveintopython3/unit-testing.html)
1. [Unit testing framework](http://docs.python.org/library/unittest.html)
1. [Python单元测试框架中文版](http://pyunit.sourceforge.net/pyunit_cn.html)
1. [Python自动单元测试框架](http://www.ibm.com/developerworks/cn/linux/l-pyunit/index.html)