Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit 15501fd

Browse files
committed
add .gitignore
1 parent dd023c8 commit 15501fd

File tree

1 file changed

+96
-0
lines changed

1 file changed

+96
-0
lines changed

.gitignore

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
#########################################
2+
# Editor temporary/working/backup files #
3+
.#*
4+
*\#*\#
5+
[#]*#
6+
*~
7+
*$
8+
*.bak
9+
*flymake*
10+
*.kdev4
11+
*.log
12+
*.swp
13+
*.pdb
14+
.project
15+
.pydevproject
16+
.settings
17+
.idea
18+
.vagrant
19+
.noseids
20+
.ipynb_checkpoints
21+
22+
# Compiled source #
23+
###################
24+
*.a
25+
*.com
26+
*.class
27+
*.dll
28+
*.exe
29+
*.o
30+
*.py[ocd]
31+
*.so
32+
.build_cache_dir
33+
MANIFEST
34+
35+
# Python files #
36+
################
37+
# setup.py working directory
38+
build
39+
# sphinx build directory
40+
doc/_build
41+
# setup.py dist directory
42+
dist
43+
# Egg metadata
44+
*.egg-info
45+
.eggs
46+
47+
# tox testing tool
48+
.tox
49+
# rope
50+
.ropeproject
51+
# wheel files
52+
*.whl
53+
**/wheelhouse/*
54+
# coverage
55+
.coverage
56+
57+
# OS generated files #
58+
######################
59+
.directory
60+
.gdb_history
61+
.DS_Store
62+
ehthumbs.db
63+
Icon?
64+
Thumbs.db
65+
66+
# Data files #
67+
##############
68+
*.dta
69+
*.xpt
70+
*.h5
71+
pandas/io/*.dat
72+
pandas/io/*.json
73+
scikits
74+
75+
# Generated Sources #
76+
#####################
77+
!skts.c
78+
!np_datetime.c
79+
!np_datetime_strings.c
80+
*.c
81+
*.cpp
82+
83+
# Performance Testing #
84+
#######################
85+
asv_bench/
86+
87+
# Documentation generated files #
88+
#################################
89+
doc/source/generated
90+
doc/source/_static
91+
doc/source/vbench
92+
doc/source/vbench.rst
93+
doc/source/index.rst
94+
doc/build/html/index.html
95+
# Windows specific leftover:
96+
doc/tmp.sv

0 commit comments

Comments
 (0)