forked from X-DataInitiative/tick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
59 lines (47 loc) · 772 Bytes
/
.gitignore
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
_*.so
bin/
build
!*build/__init__.py
# All hidden files except for gitignore
.*
!.gitignore
!.gitmodules
!.travis.yml
!.travis_install_linux.sh
!.travis_install_mac.sh
*.pyc
*__pycache__*
*_log.txt
# SWIG common generated files
*_wrap.c
*_wrap.cpp
*_wrap.cxx
*_wrap.h
*-gypcopy.cxx
# Sphinx generated files
doc/_build
doc/modules/generated
doc/auto_examples
# Latex generated
doc/tex/**/*.pdf
doc/tex/**/*.gz
doc/tex/**/*.out
doc/tex/**/*.log
doc/tex/**/*.fls
doc/tex/**/*.aux
doc/tex/**/*.fdb_latexmk
doc/tex/**/*.bbl
doc/tex/**/*.blg
# Doxygen generated files
lib/doc/*
!lib/doc/mainpage.dox
# XCode Project
XCode/
# Build directory for C++ tests
cpp_test_build/
lib/cmake-build-debug
# benchmark data
tools/benchmark/data
# Virtual Environments
env*/
venv*/