8000 Add .gitignore file to exclude common Python, IDE, and environment fi… · Jacksunwei/adk-python@e0d223d · GitHub
[go: up one dir, main page]

Skip to content

Commit e0d223d

Browse files
authored
Add .gitignore file to exclude common Python, IDE, and environment files (google#109)
1 parent 9cd802f commit e0d223d

File tree

1 file changed

+99
-0
lines changed

1 file changed

+99
-0
lines changed

.gitignore

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Virtual Environment
24+
venv/
25+
ENV/
26+
env/
27+
.env
28+
.venv
29+
env.bak/
30+
venv.bak/
31+
32+
# IDE
33+
.idea/
34+
.vscode/
35+
*.swp
36+
*.swo
37+
.DS_Store
38+
39+
# Testing
40+
.coverage
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.pytest_cache/
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
*.py,cover
51+
.hypothesis/
52+
.pytest_cache/
53+
54+
# Distribution / packaging
55+
.Python
56+
build/
57+
develop-eggs/
58+
dist/
59+
downloads/
60+
eggs/
61+
.eggs/
62+
lib/
63+
lib64/
64+
parts/
65+
sdist/
66+
var/
67+
wheels/
68+
*.egg-info/
69+
.installed.cfg
70+
*.egg
71+
72+
# Jupyter Notebook
73+
.ipynb_checkpoints
74+
75+
# Logs
76+
*.log
77+
logs/
78+
log/
79+
80+
# Local development settings
81+
.env.local
82+
.env.development.local
83+
.env.test.local
84+
.env.production.local
85+
86+
# Google Cloud specific
87+
.gcloudignore
88+
.gcloudignore.local
89+
90+
# Documentation
91+
docs/_build/
92+
site/
93+
94+
# Misc
95+
.DS_Store
96+
Thumbs.db
97+
*.bak
98+
*.tmp
99+
*.temp

0 commit comments

Comments
 (0)
0