blob: 1ae05e4896b7a04d9ba3f9926b84613f686d4820 [file] [log] [blame]
okozachenko093ce9e2021-04-01 22:47:39 +03001# Add patterns in here to exclude files created by tools integrated with this
2# repository, such as test frameworks from the project's recommended workflow,
3# rendered documentation and package builds.
4#
5# Don't add patterns to exclude files created by preferred personal tools
6# (editors, IDEs, your operating system itself even). These should instead be
7# maintained outside the repository, for example in a ~/.gitignore file added
8# with:
9#
10# git config --global core.excludesfile '~/.gitignore'
11
12# Bytecompiled Python
13*.py[cod]
14
15# C extensions
16*.so
17
18# Packages
19*.egg*
20*.egg-info
21dist
22build
23eggs
24parts
25bin
26var
27sdist
28develop-eggs
29.installed.cfg
30lib
31lib64
32
33# Installer logs
34pip-log.txt
35
36# Unit test / coverage reports
37cover/
38.coverage*
39!.coveragerc
40.tox
41nosetests.xml
42.testrepository
43.stestr
44.venv
45
46# Translations
47*.mo
48
49# Complexity
50output/*.html
51output/*/index.html
52
53# Sphinx
54doc/build
55
56# pbr generates these
57AUTHORS
58ChangeLog
59
60# Files created by releasenotes build
61releasenotes/build
okozachenko301d50b2021-05-05 10:35:15 +030062.idea/
63
64# sqlite file
65*.sqlite
66
67# log
68*.log
69
70# envvar openrc file
ricoline884f122024-11-01 16:28:13 +080071*openrc.sh