-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.gitignore
More file actions
127 lines (109 loc) · 1.37 KB
/
Copy pathpython.gitignore
File metadata and controls
127 lines (109 loc) · 1.37 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# ======================
# Python 基础忽略规则
# ======================
__pycache__/
*.py[cod]
*$py.class
*.pyo
# 虚拟环境
.venv/
venv/
env/
ENV/
.conda/
.venv*/
# 编译 / 打包 / 构建产物
build/
dist/
*.egg-info/
.eggs/
*.egg
MANIFEST
# 临时文件 / 缓存
*.log
*.tmp
*.bak
*.swp
*.swo
*.DS_Store
Thumbs.db
# Jupyter Notebook
.ipynb_checkpoints/
*.ipynb~
jupyter_notebook_config.py
profile_default/
__pycache__/
# VSCode / 编辑器
.vscode/
.idea/
*.code-workspace
# Python 工具缓存
.mypy_cache/
.pytest_cache/
.tox/
coverage.xml
htmlcov/
.coverage
.cache/
pytestdebug.log
# 环境配置 / 秘密信息
.env
*.env
*.ini
*.cfg
config.yaml
config.yml
secrets*.json
token*.json
service_account*.json
credentials.json
# 数据 / 导出结果
outputs/
output/
exports/
*.csv
*.xlsx
*.xls
*.parquet
*.feather
# 临时测试文件 / 运行日志
logs/
*.log
*.out
*.err
*.dat
*.sqlite
*.db
# IDE 生成的项目文件
*.iml
*.ipr
*.iws
.idea/
# Jupyter Auto Save
*.ipynb_checkpoints/
# macOS / Windows 系统文件
.DS_Store
.DS_Store?
Icon?
ehthumbs.db
Thumbs.db
Desktop.ini
# PyInstaller
*.manifest
*.spec
# 单元测试报告
junit.xml
test-reports/
nosetests.xml
# Sphinx 文档
docs/_build/
build/
!docs/source/
# Temporary project settings
*.bak
*.old
*.orig
# ======================
# 项目特有
# ======================
# 在此添加项目特有的忽略规则