File: .gitignore

package info (click to toggle)
requirements-parser 0.11.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 564 kB
  • sloc: python: 360; makefile: 146
file content (28 lines) | stat: -rw-r--r-- 328 bytes parent folder | download
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
# Exlude python build & distribution directories
build/
dist/
*.egg-info*

# Exlude *.pyc
*.pyc

# Exclude test-related items
.tox/*

# Exclude coverage
.coverage
test-reports

# Exclude Python Virtual Environment
venv/*
.venv/*

# Exlude IDE related files
.idea/*
.vscode/*

# Build docs
docs/_build

# mypy caches
/.mypy_cache