-
Notifications
You must be signed in to change notification settings - Fork 100
/
.gitignore
67 lines (52 loc) · 1.13 KB
/
.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
60
61
62
63
64
65
66
67
# Ignore the sample file for tests without Biotite installation
/test.py
# Ignore the distribution directories
dist/
build/
doc/_build/
*.egg-info/
# Ignore folder created by mypy
.mypy_cache/
# Ignore folder created by pytest
.pytest_cache
htmlcov
.coverage
.eggs
.cache
# Ignore version file created by hatch-vcs
/src/biotite/version.py
# Ignore internal CCD
/src/biotite/structure/info/components.bcif
# Ignore autogenerated documentation files
/doc/static/switcher.json
/doc/apidoc
/doc/examples/gallery
/doc/examples/backreferences
/doc/sg_execution_times.rst
# Ignore autogenerated tutorial
/doc/tutorial/target
# Ignore files created via Cython
*.c
*.cpp
*.so
*.pyd
# Ignore all compiled python files (e.g. from running the unit tests)
*.pyc
*.pyo
*.py-e
# Ignore potential directory created during install
biotite.egg-info
# Ignore IntelliJ IDEA directory and project files
.idea
*.iml
# Ignore Eclipse project files
.project
.pydevproject
# Ignore Visual studio code project files
*.code-workspace
.vscode/*
# Ignore hidden OS related files
*.fuse_hidden*
.DS_Store
# Ignore temp files created via Jupyter
**/.ipynb_checkpoints/