-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
60 lines (50 loc) · 621 Bytes
/
Copy path.gitignore
File metadata and controls
60 lines (50 loc) · 621 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
agents/__init__.py
chess_logic/__init__.py
config/__init__.py
ui/__init__.py
utils/__init__.py
# Python
*.pyc
*.pyo
*.pyd
__pycache__/
*.so
*.egg
*.egg-info/
dist/
build/
eggs/
parts/
sdist/
var/
*.bak
*.swp
# Virtual environment
venv/
env/
ENV/
venv.bak/
env.bak/
# Jupyter Notebooks
.ipynb_checkpoints/
# Streamlit
.streamlit/
# IDEs and text editors
.vscode/
.idea/
*.sublime-workspace
*.sublime-project
*.vscode/
# Python test directories
tests/
*.log
# Cache files
.cache/
# Dependency directories
node_modules/
bower_components/
# System files
.DS_Store
Thumbs.db
# Local environment config
config_local/