Skip to content

Commit 722d3a5

Browse files
Remove build artifacts and external dependencies
1 parent dc89e32 commit 722d3a5

File tree

1 file changed

+88
-0
lines changed

1 file changed

+88
-0
lines changed

.gitignore

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
.Python
6+
env/
7+
build/
8+
develop-eggs/
9+
dist/
10+
eggs/
11+
.eggs/
12+
lib/
13+
lib64/
14+
parts/
15+
sdist/
16+
var/
17+
*.egg-info/
18+
.installed.cfg
19+
*.egg
20+
.pytest_cache
21+
.ruff_cache
22+
23+
# Build and packaging
24+
_skbuild/
25+
_build/
26+
*.manifest
27+
*.spec
28+
29+
# IDE
30+
.vscode/
31+
.idea/
32+
*.swp
33+
*.swo
34+
.spyderproject
35+
.spyproject
36+
.ropeproject
37+
38+
# Testing and coverage
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
.hypothesis/
48+
49+
# Documentation
50+
docs/_build/
51+
/site
52+
53+
# Environment
54+
.env
55+
.venv
56+
venv/
57+
ENV/
58+
.python-version
59+
60+
# Jupyter
61+
.ipynb_checkpoints
62+
63+
# Logs and temp files
64+
*.log
65+
pip-log.txt
66+
pip-delete-this-directory.txt
67+
temp/
68+
local_settings.py
69+
70+
# External dependencies
71+
external/
72+
ext/**
73+
!ext/PLACEHOLDER
74+
75+
# Recipe
76+
recipe/**
77+
!recipe/sha256.py
78+
79+
# COMPAS specific
80+
*.3dmbak
81+
*.rhl
82+
src/compas-viewers
83+
generated
84+
*.gz
85+
86+
# OS
87+
.DS_Store
88+
Thumbs.db

0 commit comments

Comments
 (0)