File: .gitignore

package info (click to toggle)
python-ulmo 0.8.8%2Bdfsg1-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,348 kB
  • sloc: python: 6,100; makefile: 144; sh: 13
file content (23 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ignore egginfo file
ulmo.egg-info/

# ignore build, dist, ulmo_test_cache, .pytest_cache dir
dist/
build/
ulmo_test_cache/
.pytest_cache/

# ignore sphinx build dir
docs/_build/

# ignore compiled python files
*.pyc

# ignore .coverage
.coverage

# Ignore checkpoints created (especially for the examples)
.ipynb_checkpoints

# ignore tox's python versions, logs, etc.
.tox