Skip to content

Commit 64cc249

Browse files
SanMuHeSanMuHe
SanMuHe
authored and
SanMuHe
committed
Add Python Project Structure as a Python til
1 parent 94504b4 commit 64cc249

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ A collection of things I learn every day accross different techniques, programmi
1010

1111
## Python
1212
- [Define Python Source Code Encoding](python/define-python-source-code-encoding.md)
13+
- [Python Project Structure](python/python-project-structure.md)
1314
- [Ternary Operator](python/ternary-operator.md)
1415

1516
## Vim

python/python-project-structure.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Python Project Structure
2+
3+
I prefer the below structure recommened by (Kenneth Reitz)[http://www.kennethreitz.org/] at (GitHub)[https://github.com/kennethreitz/samplemod].
4+
5+
```
6+
README.rst
7+
LICENSE
8+
setup.py
9+
requirements.txt
10+
sample/__init__.py
11+
sample/core.py
12+
sample/helpers.py
13+
docs/conf.py
14+
docs/index.rst
15+
tests/test_basic.py
16+
tests/test_advanced.py
17+
```
18+
19+
For explanation for each piece, please refer to (here)[http://www.kennethreitz.org/essays/repository-structure-and-python].

0 commit comments

Comments
 (0)