-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
90 lines (74 loc) · 922 Bytes
/
Copy path.gitignore
File metadata and controls
90 lines (74 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
# Virtual environment
venv/
.env/
ENV/
env/
# Distribution / packaging
dist/
build/
*.egg-info/
*.egg
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Jupyter Notebook
.ipynb_checkpoints/
# pyenv
.python-version
### PyCharm ###
# IDE 专属文件
.idea/
*.iml
*.ipr
*.iws
workspace.xml
# 缓存和索引
.cache/
.nova/
.idea_modules/
# 本地历史记录
.idea/localHistory/
# 目录属性
.idea/dictionaries/
.idea/shelf/
### macOS ###
# 系统文件
.DS_Store
.AppleDouble
.LSOverride
# 缩略图缓存
._*
# 临时文件
*.swp
*.swo
*.swn
*.un~
# 资源分支
__MACOSX/
### 测试相关 ###
# 单元测试报告
htmlcov/
.coverage
.coverage.*
.pytest_cache/
junit.xml
# 覆盖率报告
cover/
*.mo
*.pot
### 日志与数据库 ###
# 日志文件
*.log
*.sqlite
*.db
.env
test.py