File tree 1 file changed +74
-13
lines changed
1 file changed +74
-13
lines changed Original file line number Diff line number Diff line change 1
- # Build directories
1
+ # Python bytecode and cache
2
+ __pycache__ /
3
+ ** /__pycache__ /
4
+ * .py [cod ]
5
+ * $py.class
6
+
7
+ # Distribution and packaging
8
+ .Python
2
9
build /
3
10
_build /
4
11
** /build /
12
+ develop-eggs /
5
13
dist /
14
+ downloads /
15
+ eggs /
16
+ .eggs /
17
+ lib /
18
+ lib64 /
19
+ parts /
20
+ sdist /
21
+ var /
6
22
* .egg-info /
23
+ .installed.cfg
24
+ * .egg
7
25
8
26
# External dependencies
27
+ ext /**
9
28
external /
10
29
** /external /
11
30
12
- # IDE specific
31
+ # IDE and editor settings
13
32
.vscode /
14
33
.vs /
34
+ .idea /
15
35
* .suo
16
36
* .user
17
37
* .sln
18
38
* .vcxproj
19
39
* .vcxproj.filters
20
40
* .vcxproj.user
21
41
ipch /
22
- .idea /
42
+ .spyderproject
43
+ .spyproject
44
+ .ropeproject
45
+ scripts /.idea /**
23
46
24
- # Compiled files
25
- * .pyc
26
- __pycache__ /
27
- ** /__pycache__ /
47
+ # Compiled files and binaries
28
48
* .pyd
29
49
* .so
30
50
* .dll
@@ -35,6 +55,8 @@ __pycache__/
35
55
* .exp
36
56
* .lib
37
57
* .lprof
58
+ * .manifest
59
+ * .spec
38
60
39
61
# CMake generated
40
62
CMakeCache.txt
@@ -45,16 +67,55 @@ CTestTestfile.cmake
45
67
Testing /
46
68
_deps /
47
69
48
- # Python virtual environments
70
+ # Virtual environments
71
+ .env
72
+ .venv
49
73
venv /
50
- env /
51
- .env /
52
- .venv /
74
+ ENV /
75
+ .python-version
53
76
54
- # Cache directories
77
+ # Testing and coverage
78
+ htmlcov /
79
+ .tox /
80
+ .coverage
81
+ .coverage. *
82
+ .cache
83
+ nosetests.xml
84
+ coverage.xml
85
+ * .cover
86
+ .hypothesis /
55
87
.pytest_cache /
56
88
.ruff_cache /
89
+ .mypy_cache /
90
+
91
+ # Documentation
92
+ docs /_build /
93
+ /site
94
+
95
+ # COMPAS CGAL specific
96
+ * .3dmbak
97
+ * .3dm
98
+ * .rhl
99
+ * .rui_bak
100
+ temp /
101
+ generated /
102
+ recipe /**
103
+ ! recipe /sha256.py
104
+
105
+ # Logs and temporary files
106
+ * .log
107
+ pip-log.txt
108
+ pip-delete-this-directory.txt
109
+ local_settings.py
110
+ celerybeat-schedule
57
111
58
- # OS specific
112
+ # Other
113
+ * .mo
114
+ * .pot
115
+ * .sage.py
116
+ instance /
117
+ .webassets-cache
118
+ .scrapy
59
119
.DS_Store
60
120
Thumbs.db
121
+ .ipynb_checkpoints
You can’t perform that action at this time.
0 commit comments