Skip to content

Commit 8347623

Browse files
committedDec 16, 2019
reorganized towards pypi
1 parent e935758 commit 8347623

File tree

336 files changed

+167
-13128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

336 files changed

+167
-13128
lines changed
 

‎.gitattributes

+57-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,57 @@
1-
# Auto detect text files and perform LF normalization
2-
* text=auto
1+
* text=auto eol=lf
2+
3+
4+
5+
*.bat text eol=crlf
6+
7+
*.config text eol=lf
8+
9+
*.css text eol=lf
10+
11+
*.html text eol=lf
12+
13+
*.js text eol=lf
14+
15+
*.prefs text
16+
17+
*.py text eol=lf
18+
19+
*.rst text eol=lf
20+
21+
*.sh text eol=lf
22+
23+
*.txt text eol=lf
24+
25+
*.po text eol=lf
26+
27+
*.pot text eol=lf
28+
29+
*.styl text eol=lf
30+
31+
*.xml text
32+
33+
34+
35+
*.gif binary
36+
37+
*.ico binary
38+
39+
*.jpg binary
40+
41+
*.lnk binary
42+
43+
*.mo binary
44+
45+
*.png binary
46+
47+
*.exe binary
48+
49+
*.so binary
50+
51+
*.ppt binary
52+
53+
*.pdf binary
54+
55+
*.gz binary
56+
57+
*.zip binary

‎.gitignore

+66-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,70 @@
11
.pyc
22
.py.bak
3-
__pycache__
3+
44
WorkDir
55
.idea
6+
.log
7+
8+
*~
9+
10+
*.address
11+
12+
*.bak
13+
14+
*.cache
15+
16+
*.default
17+
18+
*.egg-info
19+
20+
*.log
21+
22+
*.patch
23+
24+
*.pid
25+
26+
*.pstats
27+
28+
*.pyc
29+
30+
*.pyo
31+
32+
*.ses
33+
34+
*.swp
35+
36+
37+
38+
__pycache__
39+
40+
41+
42+
build/
43+
44+
dist/
45+
46+
_build/
47+
48+
49+
50+
Thumbs.db
51+
52+
.DS_Store
53+
54+
55+
56+
Cache/
57+
58+
Logs/
59+
60+
ErrorMsgs/
61+
62+
Sessions/
63+
64+
65+
66+
.idea/
67+
68+
.tox/
69+
70+
.venv/

0 commit comments

Comments
 (0)
Please sign in to comment.